<div class='sourceset sourceset-common'>Common</div>

```kotlin
data class MoveTo(val x: Float, val y: Float) : PathNode()
```

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. |