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:
authorTon Roosendaal <ton@blender.org>2005-12-01 22:04:57 +0300
committerTon Roosendaal <ton@blender.org>2005-12-01 22:04:57 +0300
commitc4a1d655aeb54abcb4bdf02491e002d69020a786 (patch)
tree733461cbe1559e14738c5b72f6716c77dcd656e2 /source/blender/include/BIF_meshtools.h
parenta09fbc080dea64078a6cfb307a720194ee30e6db (diff)
True X-mirror mesh editing!
Set the option in EditMode, in 2nd mesh tools panel. It only works on transform options now (grab/rot/scale), and of course assumes a near- perfect symmetrical mesh. Mesh Object itself can be on any location though (and rotated etc).
Diffstat (limited to 'source/blender/include/BIF_meshtools.h')
-rw-r--r--source/blender/include/BIF_meshtools.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/include/BIF_meshtools.h b/source/blender/include/BIF_meshtools.h
index b5f5a91c50c..8df5e7255a5 100644
--- a/source/blender/include/BIF_meshtools.h
+++ b/source/blender/include/BIF_meshtools.h
@@ -34,6 +34,7 @@
#define BIF_MESHTOOLS_H
struct Object;
+struct EditVert;
extern void join_mesh(void);
@@ -42,8 +43,9 @@ extern void slowerdraw(void);
extern void sort_faces(void);
-extern int mesh_octree_table(struct Object *ob, float *co, char mode);
+extern long mesh_octree_table(struct Object *ob, float *co, char mode);
extern int mesh_get_x_mirror_vert(struct Object *ob, int index);
+extern struct EditVert *editmesh_get_x_mirror_vert(struct Object *ob, float *co);
#endif