🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

PathNode.RelativeMoveTo

Starts a new subpath at a point defined by a relative offset from the current point.

Source set: Common
public data class RelativeMoveTo(public val dx: Float, public val dy: Float) : PathNode()

Starts a new subpath at a point defined by a relative offset from the current point. Corresponds to the m path data command.

Parameters

dx The relative change in the x-coordinate.
dy The relative change in the y-coordinate.