resetEndpointsBasedOnTip method
Implementation
void resetEndpointsBasedOnTip(
ArrowTip tip,
TipSide side,
) {
if (getLength() == 0) {
return;
}
if (side == TIP_AT_START) {
putStartAndEndOn(
tip.getBase(),
getEnd(),
);
} else {
putStartAndEndOn(
getStart(),
tip.getBase(),
);
}
}