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:
authorJoseph Eagar <joeedh@gmail.com>2009-07-17 14:54:00 +0400
committerJoseph Eagar <joeedh@gmail.com>2009-07-17 14:54:00 +0400
commitf2138686d9d8c105ebf8884774fd7e4d8ff239a1 (patch)
treed7ee0a0c846f373a91d9006fe17b2a82b27b0f47 /source/blender/blenkernel/BKE_tessmesh.h
parent359fb502b676d5826c5113c05d3bd1731087de7c (diff)
moved the selection history stuff within bmesh itself, to avoid memory access problems. also committing some playing around I did with the edge subdivide code, which isn't doesn't really completely work.
Diffstat (limited to 'source/blender/blenkernel/BKE_tessmesh.h')
-rw-r--r--source/blender/blenkernel/BKE_tessmesh.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/source/blender/blenkernel/BKE_tessmesh.h b/source/blender/blenkernel/BKE_tessmesh.h
index c3ccf4b1e6a..e448f904841 100644
--- a/source/blender/blenkernel/BKE_tessmesh.h
+++ b/source/blender/blenkernel/BKE_tessmesh.h
@@ -11,13 +11,6 @@ ok: the EDBM module is for editmode bmesh stuff. in contrast, the
the BMEditMesh structure.
*/
-typedef struct BMEditSelection
-{
- struct BMEditSelection *next, *prev;
- short type;
- void *data;
-} BMEditSelection;
-
/*this structure replaces EditMesh.
through this, you get access to both the edit bmesh,
@@ -25,7 +18,7 @@ typedef struct BMEditSelection
struct itself.
the entire derivedmesh and modifier system works with this structure,
- and not BMesh. Mesh->editbmesh will store a pointer to this structure.*/
+ and not BMesh. Mesh->edit_bmesh stores a pointer to this structure.*/
typedef struct BMEditMesh {
struct BMesh *bm;
@@ -50,9 +43,6 @@ typedef struct BMEditMesh {
struct BMVert **vert_index;
struct BMEdge **edge_index;
struct BMFace **face_index;
-
- /*selection order list*/
- ListBase selected;
/*selection mode*/
int selectmode;