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-09-18 03:23:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-18 03:23:32 +0400
commit9096b3a14e063df0fb45d2ce266ec858bf937207 (patch)
treec5d29b3b48e2e46a0bc6d6b6c2f32e73a0e61bd0 /source/blender/bmesh/operators/bmo_bridge.c
parentdd628ab4edc61bfca018b034008879358077d21c (diff)
fix [#36211] bridge edge loops joining vertecies that are far away
for bridge use a different beautify method when edge loops have non-matching loop count (simple face-angle comparison).
Diffstat (limited to 'source/blender/bmesh/operators/bmo_bridge.c')
-rw-r--r--source/blender/bmesh/operators/bmo_bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bmesh/operators/bmo_bridge.c b/source/blender/bmesh/operators/bmo_bridge.c
index f4bb73f87ea..9dfbf951fc0 100644
--- a/source/blender/bmesh/operators/bmo_bridge.c
+++ b/source/blender/bmesh/operators/bmo_bridge.c
@@ -421,8 +421,8 @@ static void bridge_loop_pair(BMesh *bm,
BMO_op_initf(bm, &op_sub, 0,
- "beautify_fill faces=%hf edges=ae use_restrict_tag=%b",
- BM_ELEM_TAG, true);
+ "beautify_fill faces=%hf edges=ae use_restrict_tag=%b method=%i",
+ BM_ELEM_TAG, true, 1);
if (use_edgeout) {
BMOIter siter;