Android
public data class RelativeReflectiveCurveTo(
val dx1: RemoteFloat,
val dy1: RemoteFloat,
val dx2: RemoteFloat,
val dy2: RemoteFloat,
) : RemotePathNode(isCurve = true)
Draws a smooth cubic Bézier curve using relative coordinates. This command ensures a seamless connection to a previous curve by inferring its first control point as a reflection of the last control point of the preceding command. Corresponds to the s path data command.
Parameters
| dx1 | The relative x-offset of the second control point. |
| dy1 | The relative y-offset of the second control point. |
| dx2 | The relative x-offset of the curve's end point. |
| dy2 | The relative y-offset of the curve's end point. |