Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform_convert_gpencil.c
| Show First 20 Lines • Show All 348 Lines • ▼ Show 20 Lines | if (BKE_gpencil_layer_is_editable(gpl) && (gpl->actframe != NULL)) { | ||||
| td++; | td++; | ||||
| tail++; | tail++; | ||||
| } | } | ||||
| } | } | ||||
| /* March over these points, and calculate the proportional editing distances */ | /* March over these points, and calculate the proportional editing distances */ | ||||
| if (is_prop_edit && (head != tail)) { | if (is_prop_edit && (head != tail)) { | ||||
| calc_distanceCurveVerts(head, tail - 1); | calc_distanceCurveVerts(head, tail - 1, false); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| /* if not multiedit out of loop */ | /* if not multiedit out of loop */ | ||||
| if (!is_multiedit) { | if (!is_multiedit) { | ||||
| break; | break; | ||||
| } | } | ||||
| Show All 25 Lines | |||||