bevel - use tri-fan filling in the special case when a bevel edge meets a non bevel edge at a valence 2 vert.

this is the topology tri-fan was intended to be used.
This commit is contained in:
Campbell Barton
2012-12-04 15:28:34 +00:00
parent 767bfba808
commit 576bc2e6e4

View File

@@ -726,7 +726,8 @@ static void build_boundary(MemArena *mem_arena, BevVert *bv)
v = add_new_bound_vert(mem_arena, vm, co);
v->efirst = v->elast = e->next;
e->next->leftv = e->next->rightv = v;
vm->mesh_kind = M_POLY;
/* could use M_POLY too, but tri-fan looks nicer)*/
vm->mesh_kind = M_TRI_FAN;
return;
}