diff --git a/include/bn/vlist.h b/include/bn/vlist.h index f4902fcd38..0ffa61bef1 100644 --- a/include/bn/vlist.h +++ b/include/bn/vlist.h @@ -156,13 +156,6 @@ struct bn_vlist { BN_EXPORT extern int bn_vlist_cmd_cnt(struct bn_vlist *vlist); BN_EXPORT extern int bn_vlist_bbox(struct bn_vlist *vp, point_t *bmin, point_t *bmax); -/* Stores vertex info for labelling with NMG index. */ -struct vtxlabel { - struct bu_list l; - point_t coord; - long int index; -}; - /** * For plotting, a way of separating plots into separate color vlists: * blocks of vlists, each with an associated color. diff --git a/include/rt/vlist.h b/include/rt/vlist.h index 67e50b88e0..5b9cc94e51 100644 --- a/include/rt/vlist.h +++ b/include/rt/vlist.h @@ -111,6 +111,12 @@ RT_EXPORT extern void rt_label_vlist_faces(struct bn_vlblock *vbp, double sz, double mm2local); +/* Stores vertex info for labelling with NMG index. */ +struct vtxlabel { + struct bu_list l; + point_t coord; + long int index; +}; __END_DECLS diff --git a/src/mged/overlay.c b/src/mged/overlay.c index ec42c5db5e..a2444e3c68 100644 --- a/src/mged/overlay.c +++ b/src/mged/overlay.c @@ -28,7 +28,6 @@ #include "vmath.h" #include "raytrace.h" -#include "bn/vlist.h" #include "./mged.h" #include "./sedit.h"