Adds beginning of contour at Point (x, y). @param x x-axis value of contour start @param y y-axis value of contour start @return reference to Path @see https://fiddle.skia.org/c/@Path_moveTo
(float x, float y)
| 653 | * @see <a href="https://fiddle.skia.org/c/@Path_moveTo">https://fiddle.skia.org/c/@Path_moveTo</a> |
| 654 | */ |
| 655 | public Path moveTo(float x, float y) { |
| 656 | Stats.onNativeCall(); |
| 657 | _nMoveTo(_ptr, x, y); |
| 658 | return this; |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * Adds beginning of contour at Point p. |