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

PathNode.RelativeCurveTo

Draws a cubic Bézier curve from the current point to a new point using relative coordinates.

Source set: Common
public data class RelativeCurveTo(
        public val dx1: Float,
        public val dy1: Float,
        public val dx2: Float,
        public val dy2: Float,
        public val dx3: Float,
        public val dy3: Float,
    ) : PathNode(isCurve = true)

Draws a cubic Bézier curve from the current point to a new point using relative coordinates. Corresponds to the c path data command.

Parameters

dx1 The relative x-offset of the first control point.
dy1 The relative y-offset of the first control point.
dx2 The relative x-offset of the second control point.
dy2 The relative y-offset of the second control point.
dx3 The relative x-offset of the curve's end point.
dy3 The relative y-offset of the curve's end point.