Class

RemotePathNode.ReflectiveQuadTo

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

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free
Android
public data class ReflectiveQuadTo(val x: RemoteFloat, val y: RemoteFloat) :
        RemotePathNode(isQuad = true)

Draws a smooth quadratic Bézier curve using absolute 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

x The absolute x-coordinate of the curve's end point.
y The absolute y-coordinate of the curve's end point.