moves the draw position to a new place `x,y` without drawing anything on the way there.
(double x, double y)
| 188 | public FLine moveTo(double x, double y) { |
| 189 | return add(new MoveTo(x, y, 0)); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * moves the draw position to `position` without drawing anything on the way there. |
| 194 | */ |
| 195 | public FLine moveTo(Vec2 position) { |
| 196 | return add(new MoveTo(position.x, position.y, 0)); |
no test coverage detected