public interface IPath
Modifier and Type | Method and Description |
---|---|
void |
addToPath(double x,
double y)
Add a straight line segment to the path.
|
void |
addToPath(double x1,
double y1,
double x2,
double y2,
double x3,
double y3)
Add a Cubic Bezier curve segment from the current point to (x3,y3) using
(x1, y1) and (x2, y2) as the control points.
|
void |
closePath()
Close the path by making a straight line segment back to the original point.
|
void |
startPath(double x,
double y)
Start a new sub path at x and y.
|
void startPath(double x, double y)
void addToPath(double x, double y)
void addToPath(double x1, double y1, double x2, double y2, double x3, double y3)
void closePath()