Changeset View
Changeset View
Standalone View
Standalone View
source/blender/bmesh/tools/bmesh_bevel.c
| Context not available. | |||||
| else { | else { | ||||
| adjust_bound_vert(e->rightv, co); | adjust_bound_vert(e->rightv, co); | ||||
| } | } | ||||
| /* make artifical extra point along unbeveled edge, and form triangle */ | /* make artificial extra point along unbeveled edge, and form triangle */ | ||||
| slide_dist(e->next, bv->v, e->offset_l, co); | slide_dist(e->next, bv->v, e->offset_l, co); | ||||
| if (construct) { | if (construct) { | ||||
| v = add_new_bound_vert(mem_arena, vm, co); | v = add_new_bound_vert(mem_arena, vm, co); | ||||
| Context not available. | |||||
| * residual in terms of that one degree of freedom. | * residual in terms of that one degree of freedom. | ||||
| * Unfortunately, the results are in some cases worse than the general least squares solution | * Unfortunately, the results are in some cases worse than the general least squares solution | ||||
| * for the combined (with weights) problem, so this code is not used. | * for the combined (with weights) problem, so this code is not used. | ||||
| * But keep it here for a while in case peformance issues demand that it be used sometimes. */ | * But keep it here for a while in case performance issues demand that it be used sometimes. */ | ||||
| static bool adjust_the_cycle_or_chain_fast(BoundVert *vstart, int np, bool iscycle) | static bool adjust_the_cycle_or_chain_fast(BoundVert *vstart, int np, bool iscycle) | ||||
| { | { | ||||
| BoundVert *v; | BoundVert *v; | ||||
| Context not available. | |||||