Class

PathNode.MoveTo

Starts a new subpath at the given absolute (x,y) coordinate.

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