splineThru method

ShapePath splineThru(
  1. List<Vector2> pts
)

Connects a new SplineCurve onto the currentPath.

Implementation

ShapePath splineThru(List<Vector2> pts) {
  currentPath.splineThru(pts);
  return this;
}