curvePath method

Drawable curvePath(
  1. List<PointD> points
)

Draws a curve passing through the points passed in.

  • points is an array of PointD

Implementation

Drawable curvePath(List<PointD> points) {
  return _buildDrawable(OpSetBuilder.curve(points, drawConfig!));
}