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>2015-12-11 09:46:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-11 09:54:42 +0300
commitd70e0b6654e6564a3ca3f6f9094c63c36544bc45 (patch)
treea3fe981c2a64dbd3b41853d35970e1740aaa10ce /source/blender/editors/mesh/mesh_intern.h
parent9f3ed82f35d68cc9e723fab4e34ab4ddc7e7551c (diff)
BMesh: Boolean as an edit-mode tool
Works much the same as intersect operator, expose as a new operator since for users its quite different. Access from face menu. Internally, this adds boolean args to BM_mesh_intersect function.
Diffstat (limited to 'source/blender/editors/mesh/mesh_intern.h')
-rw-r--r--source/blender/editors/mesh/mesh_intern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/mesh_intern.h b/source/blender/editors/mesh/mesh_intern.h
index c56465f570a..3b018eadb2d 100644
--- a/source/blender/editors/mesh/mesh_intern.h
+++ b/source/blender/editors/mesh/mesh_intern.h
@@ -109,6 +109,7 @@ void MESH_OT_inset(struct wmOperatorType *ot);
/* *** editmesh_intersect.c *** */
void MESH_OT_intersect(struct wmOperatorType *ot);
+void MESH_OT_intersect_boolean(struct wmOperatorType *ot);
void MESH_OT_face_split_by_edges(struct wmOperatorType *ot);