Revert "Fix T61988: Bevel mitering on small objects."

This reverts commit 048088e1d2.
Accidentally changed submodules. Will resubmit with only
intended changes later.
This commit is contained in:
Howard Trickey 2019-02-27 11:41:40 -05:00
parent f57fce3534
commit 4243c29463
Notes: blender-bot 2023-02-14 08:45:09 +01:00
Referenced by issue #61988, Bevel mitering doens't work on small objects
1 changed files with 0 additions and 3 deletions

View File

@ -756,11 +756,8 @@ static int edges_angle_kind(EdgeHalf *e1, EdgeHalf *e2, BMVert *v)
v2 = BM_edge_other_vert(e2->e, v);
sub_v3_v3v3(dir1, v->co, v1->co);
sub_v3_v3v3(dir2, v->co, v2->co);
normalize_v3(dir1);
normalize_v3(dir2);
/* angles are in [0,pi]. need to compare cross product with normal to see if they are reflex */
cross_v3_v3v3(cross, dir1, dir2);
normalize_v3(cross);
if (e1->fnext)
no = e1->fnext->no;
else if (e2->fprev)