Skip to content

Commit

Permalink
feat: Added custom face flag(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Feb 12, 2021
1 parent e4ca889 commit 2501d61
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/common/objutil.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* RCSid $Id: objutil.h,v 2.9 2021/02/12 01:57:49 greg Exp $ */
/* RCSid $Id: objutil.h,v 2.10 2021/02/12 15:35:07 greg Exp $ */
/*
* Declarations for .OBJ file utility
*
Expand All @@ -17,9 +17,10 @@
#define POPEN_SUPPORT 1 /* support "!command" i/o */
#endif
/* face flags */
#define FACE_SELECTED 01
#define FACE_DEGENERATE 02
#define FACE_DUPLICATE 04
#define FACE_DEGENERATE 01
#define FACE_DUPLICATE 02
#define FACE_SELECTED 04
#define FACE_CUSTOM(n) (1<<(2+(n)))

struct Face; /* forward declaration */

Expand Down

0 comments on commit 2501d61

Please sign in to comment.