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

PathNode.RelativeQuadTo

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

Source set: Common
public data class RelativeQuadTo(
        public val dx1: Float,
        public val dy1: Float,
        public val dx2: Float,
        public val dy2: Float,
    ) : PathNode(isQuad = true)

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

Parameters

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