[Bf-blender-cvs] [04e12c6] master: Fix T46029. Center ngon in bevel got no attributes or interpolation data.

Howard Trickey noreply at git.blender.org
Mon Sep 7 14:34:47 CEST 2015


Commit: 04e12c617dc37e89cb73f3f69c238ae19ac351b2
Author: Howard Trickey
Date:   Mon Sep 7 09:33:42 2015 -0300
Branches: master
https://developer.blender.org/rB04e12c617dc37e89cb73f3f69c238ae19ac351b2

Fix T46029. Center ngon in bevel got no attributes or interpolation data.

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

M	source/blender/bmesh/tools/bmesh_bevel.c

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

diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 9fba5b1..cb1c856 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -2947,7 +2947,7 @@ static void bevel_build_rings(BevelParams *bp, BMesh *bm, BevVert *bv)
 				BLI_array_append(ve, v == vm->boundstart ? NULL : frep_e);
 			}
 			else {
-				BLI_array_append(vf, frep);
+				BLI_array_append(vf, boundvert_rep_face(v, NULL));
 				BLI_array_append(ve, NULL);
 			}
 		} while ((v = v->next) != vm->boundstart);




More information about the Bf-blender-cvs mailing list