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:
authorHoward Trickey <howard.trickey@gmail.com>2015-07-06 20:24:42 +0300
committerHoward Trickey <howard.trickey@gmail.com>2015-07-06 20:27:01 +0300
commit791b5fe9d0c47460700b5725faff687f892f06cf (patch)
treed612140080700a65af2012c0d7d824ddc694fad5
parent93608e4f3bba2c24f46376177fdc1d4fdef98884 (diff)
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.
-rw-r--r--source/blender/bmesh/tools/bmesh_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_bevel.c b/source/blender/bmesh/tools/bmesh_bevel.c
index 791669fa0fc..308c187048a 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) {