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).
This commit is contained in:
2005-12-01 19:04:57 +00:00
parent a09fbc080d
commit c4a1d655ae
10 changed files with 96 additions and 39 deletions

View File

@@ -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