[Bf-blender-cvs] [791b5fe] master: Fix T45331, a bevel regression for 2.75.

Howard Trickey noreply at git.blender.org
Mon Jul 6 19:28:33 CEST 2015


Commit: 791b5fe9d0c47460700b5725faff687f892f06cf
Author: Howard Trickey
Date:   Mon Jul 6 13:24:42 2015 -0400
Branches: master
https://developer.blender.org/rB791b5fe9d0c47460700b5725faff687f892f06cf

Fix T45331, a bevel regression for 2.75.

Got bad results when two beveled edges form straight line
and there are two or more unbeveled edges attached to either
side of the connecting vertex.

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

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 791669f..308c187 100644
--- a/source/blender/bmesh/tools/bmesh_bevel.c
+++ b/source/blender/bmesh/tools/bmesh_bevel.c
@@ -1800,7 +1800,7 @@ static void build_boundary(BevelParams *bp, BevVert *bv, bool construct)
 				offset_on_edge_between(bp, e, e2, eip, bv->v, co);
 			}
 			else {
-				offset_meet(e, e2, bv->v, NULL, true, co);
+				offset_meet(e, e2, bv->v, e->fnext, true, co);
 			}
 		}
 		if (construct) {




More information about the Bf-blender-cvs mailing list