Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-27 16:25:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 16:25:47 +0400
commit21f1c99a781b6747eeace208c6786ab427eb39fc (patch)
tree52bd2c8f5d2e5e719f248300bcc1a4450c764b8a /source/blender/bmesh/bmesh_class.h
parent47c373c7a970fa4bd26453a6e35a4b066f2b77e4 (diff)
update bmesh design doc and added some comments to the code from it.
Diffstat (limited to 'source/blender/bmesh/bmesh_class.h')
-rw-r--r--source/blender/bmesh/bmesh_class.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/bmesh_class.h b/source/blender/bmesh/bmesh_class.h
index 5a0158a7b9a..d800fe7bf77 100644
--- a/source/blender/bmesh/bmesh_class.h
+++ b/source/blender/bmesh/bmesh_class.h
@@ -30,7 +30,7 @@
/* bmesh data structures */
/* dissable holes for now, these are ifdef'd because they use more memory and cant be saved in DNA currently */
-// define USE_BMESH_HOLES
+#define USE_BMESH_HOLES
struct BMesh;
struct BMVert;
@@ -95,7 +95,7 @@ typedef struct BMLoop {
/* notice no flags layer */
struct BMVert *v;
- struct BMEdge *e;
+ struct BMEdge *e; /* edge, using verts (v, next->v) */
struct BMFace *f;
struct BMLoop *radial_next, *radial_prev;