Android
public data class MoveTo(val x: RemoteFloat, val y: RemoteFloat) : RemotePathNode()
Starts a new subpath at the given absolute (x,y) coordinate. Corresponds to the M path data command.
Parameters
| x | The absolute x-coordinate to move to. |
| y | The absolute y-coordinate to move to. |