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>2020-01-07 06:45:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-07 06:45:01 +0300
commit9d7abce359f60eefb78e5edaf21aa24322a6f511 (patch)
treef4963b72cf02c9428141b9dbe7586470a6ec9d3c /source/blender/editors/include
parent8bdac377d85a74a0a84eda51fbcc927ae4ad54b3 (diff)
BMesh: remove BMEditMesh.ob use for select mirror
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_mesh.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_mesh.h b/source/blender/editors/include/ED_mesh.h
index e398e5def9e..e1330f8b9e7 100644
--- a/source/blender/editors/include/ED_mesh.h
+++ b/source/blender/editors/include/ED_mesh.h
@@ -154,8 +154,12 @@ void EDBM_automerge_and_split(struct Object *ob,
void ED_mesh_undosys_type(struct UndoType *ut);
/* editmesh_select.c */
-void EDBM_select_mirrored(
- struct BMEditMesh *em, const int axis, const bool extend, int *r_totmirr, int *r_totfail);
+void EDBM_select_mirrored(struct BMEditMesh *em,
+ const struct Mesh *me,
+ const int axis,
+ const bool extend,
+ int *r_totmirr,
+ int *r_totfail);
struct BMVert *EDBM_vert_find_nearest_ex(struct ViewContext *vc,
float *r_dist,