bezierCurveTo method

  1. @override
Shape bezierCurveTo(
  1. double aCP1x,
  2. double aCP1y,
  3. double aCP2x,
  4. double aCP2y,
  5. double aX,
  6. double aY,
)
override

This creates a bezier curve from currentPoint with (cp1X, cp1Y) and (cp2X, cp2Y) as control points and updates currentPoint to x and y.

Implementation

@override
Shape bezierCurveTo(double aCP1x, double aCP1y, double aCP2x, double aCP2y, double aX, double aY) {
  super.bezierCurveTo(aCP1x, aCP1y, aCP2x, aCP2y, aX, aY);
  return this;
}