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:
authorDaniel Dunbar <daniel@zuster.org>2004-03-28 12:46:35 +0400
committerDaniel Dunbar <daniel@zuster.org>2004-03-28 12:46:35 +0400
commit9206a1eba69136c928dc72144862d31bb00e6b11 (patch)
tree09cc61d9068e587e338780731590cd9ee9dd6ff4 /source/blender/blenlib/BLI_editVert.h
parentd29d7030b64895574a1fdb4edd9764e5ce89f013 (diff)
- replaced G.{edve,eded,edvl} with G.editMesh, atm just a structure to
hold the three lists, nothing major, but gives a place to hang data off of and a single "mesh" structure to pass around for editing functions.
Diffstat (limited to 'source/blender/blenlib/BLI_editVert.h')
-rw-r--r--source/blender/blenlib/BLI_editVert.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_editVert.h b/source/blender/blenlib/BLI_editVert.h
index cae08f8041f..a8e2123c6df 100644
--- a/source/blender/blenlib/BLI_editVert.h
+++ b/source/blender/blenlib/BLI_editVert.h
@@ -73,5 +73,10 @@ typedef struct EditVlak
unsigned char f, f1;
} EditVlak;
+typedef struct EditMesh
+{
+ ListBase verts, edges, faces;
+} EditMesh;
+
#endif