splineThru method

  1. @override
Shape splineThru(
  1. List<Vector2> pts
)
override

points - An array of Vector2

Connects a new SplineCurve onto the path.

Implementation

@override
Shape splineThru(List<Vector2> pts) {
  super.splineThru(pts);
  return this;
}