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 03:47:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-11 04:01:22 +0300
commitc593855b29f7abd0c4f6e54a5b48900987738ee4 (patch)
tree4a814318c3c8863ea46af095901243d58806370c /source/blender/editors/mesh/editmesh_intersect.c
parentbb4bff35763163e9110444051b0d15731b4f3e39 (diff)
BMesh: hole support for intersect tool
Support cutting many outlines into a single face (creating edges between isolated regions).
Diffstat (limited to 'source/blender/editors/mesh/editmesh_intersect.c')
-rw-r--r--source/blender/editors/mesh/editmesh_intersect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_intersect.c b/source/blender/editors/mesh/editmesh_intersect.c
index a21b259fdc8..bd5faff9bff 100644
--- a/source/blender/editors/mesh/editmesh_intersect.c
+++ b/source/blender/editors/mesh/editmesh_intersect.c
@@ -123,7 +123,7 @@ static int edbm_intersect_exec(bContext *C, wmOperator *op)
bm,
em->looptris, em->tottri,
test_fn, NULL,
- use_self, use_separate,
+ use_self, use_separate, true,
eps);