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>2013-06-20 01:23:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-20 01:23:00 +0400
commit1ed8343d6da17076e43c06cce272c4b1d93f89a8 (patch)
tree0aa3de0428daac4d5b57241541a75f8c1a8e455f /source/blender/editors/include
parentc33093ac085c117a0c3004c42def280c8c977ce3 (diff)
add axis option to EDBM_verts_mirror_cache_begin
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_mesh.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h
index f35edb70251..0b25c494ba9 100644
--- a/source/blender/editors/include/ED_mesh.h
+++ b/source/blender/editors/include/ED_mesh.h
@@ -76,9 +76,11 @@ struct MeshStatVis;
/* editmesh_utils.c */
-void EDBM_verts_mirror_cache_begin_ex(struct BMEditMesh *em, const bool use_self, const bool use_select,
+void EDBM_verts_mirror_cache_begin_ex(struct BMEditMesh *em, const int axis,
+ const bool use_self, const bool use_select,
const bool is_topo, float maxdist, int *r_index);
-void EDBM_verts_mirror_cache_begin(struct BMEditMesh *em, const bool use_self, const bool use_select);
+void EDBM_verts_mirror_cache_begin(struct BMEditMesh *em, const int axis,
+ const bool use_self, const bool use_select);
void EDBM_verts_mirror_apply(struct BMEditMesh *em, const int sel_from, const int sel_to);
struct BMVert *EDBM_verts_mirror_get(struct BMEditMesh *em, struct BMVert *v);
void EDBM_verts_mirror_cache_clear(struct BMEditMesh *em, struct BMVert *v);