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-08-23 17:27:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-23 17:27:44 +0400
commit620d674b85d42e75505606246b7db6866900d589 (patch)
tree29278dc3feddb55e328cf344680f38a685809911 /source/blender/bmesh/tools/bmesh_bisect_plane.h
parentd6b9fb36d85eac730ce9a3deb6211fb0c3c0a5ec (diff)
fix error in recently added symmetrize rewrite, verts already on the aligned to the mirror-plane would not be welded.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_bisect_plane.h')
-rw-r--r--source/blender/bmesh/tools/bmesh_bisect_plane.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bisect_plane.h b/source/blender/bmesh/tools/bmesh_bisect_plane.h
index bb7c8b357a4..15f902642c8 100644
--- a/source/blender/bmesh/tools/bmesh_bisect_plane.h
+++ b/source/blender/bmesh/tools/bmesh_bisect_plane.h
@@ -29,6 +29,6 @@
void BM_mesh_bisect_plane(BMesh *bm, float plane[4],
const bool use_snap_center, const bool use_tag,
- const short oflag_new, const float eps);
+ const short oflag_center, const float eps);
#endif /* __BMESH_BISECT_PLANE_H__ */