Skip to content

Commit

Permalink
moved vtxlabel struct def to rt/vlist.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad Eric Hollister committed Aug 21, 2015
1 parent 801d414 commit 688c64e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
7 changes: 0 additions & 7 deletions include/bn/vlist.h
Expand Up @@ -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.
Expand Down
6 changes: 6 additions & 0 deletions include/rt/vlist.h
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion src/mged/overlay.c
Expand Up @@ -28,7 +28,6 @@

#include "vmath.h"
#include "raytrace.h"
#include "bn/vlist.h"

#include "./mged.h"
#include "./sedit.h"
Expand Down

0 comments on commit 688c64e

Please sign in to comment.