[Bf-blender-cvs] [04896acd698] fracture_modifier: skip exceeded verts in average coord calculation in keep distort mode now too

Martin Felke noreply at git.blender.org
Tue Jun 20 22:24:46 CEST 2017


Commit: 04896acd6988b1f77537a37865c0945ca193a8b4
Author: Martin Felke
Date:   Tue Jun 20 22:24:33 2017 +0200
Branches: fracture_modifier
https://developer.blender.org/rB04896acd6988b1f77537a37865c0945ca193a8b4

skip exceeded verts in average coord calculation in keep distort mode now too

===================================================================

M	source/blender/modifiers/intern/MOD_fracture.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_fracture.c b/source/blender/modifiers/intern/MOD_fracture.c
index 0bbc13f6070..900868a9a20 100644
--- a/source/blender/modifiers/intern/MOD_fracture.c
+++ b/source/blender/modifiers/intern/MOD_fracture.c
@@ -3358,7 +3358,7 @@ static void prepare_automerge(FractureModifierData *fmd, BMesh *bm)
 
 		for (sv = vg->verts.first; sv; sv = sv->next)
 		{
-			if (!sv->exceeded || fmd->keep_distort) {
+			if (!sv->exceeded) {
 				v2 = bm->vtable[sv->index];
 				add_v3_v3(co, v2->co);
 				add_v3_v3(no, v2->no);




More information about the Bf-blender-cvs mailing list