moveTo method
Move the currentPoint to x, y.
Implementation
Path moveTo(double x, double y) {
currentPoint.setValues(x, y);
return this;
}
Move the currentPoint to x, y.
Path moveTo(double x, double y) {
currentPoint.setValues(x, y);
return this;
}