Class

RemotePathNode.RelativeReflectiveQuadTo

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

Source set: Android
public data class RelativeReflectiveQuadTo(val dx: RemoteFloat, val dy: RemoteFloat) :
        RemotePathNode(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.

Last updated: