-
Path.arcTo(double centerX,
double centerY,
double sweepRadians)
Draws an arc with the center being the (centerX, centerY) coordinates.
Path.bezierTo(double control1X,
double control1Y,
double control2X,
double control2Y,
double endX,
double endY)
Draws a cubic Bézier curve.
Path.curveTo(double controlX,
double controlY,
double endX,
double endY)
Draws a quadratic Bézier curve.
Starts a path from the starting position specified in this method.
Starts a path from the starting position specified in this method.
Path.lineTo(double endX,
double endY)
Draws a straight line from the current position to the end position.