Class

PathNode.RelativeReflectiveQuadTo

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

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free
Common
data class RelativeReflectiveQuadTo(val dx: Float, 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.