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

PathNode.RelativeReflectiveQuadTo

Draws a smooth quadratic Bézier curve using relative coordinates.

Source set: Common
public data class RelativeReflectiveQuadTo(public val dx: Float, public val dy: Float) :
        PathNode(isQuad = true)

Draws a smooth quadratic Bézier curve using relative coordinates. This command ensures a seamless connection by inferring its control point as a reflection of the control point of the preceding command. Corresponds to the t path data command.

Parameters

dx The relative x-offset of the curve's end point.
dy The relative y-offset of the curve's end point.