Class

PathNode.RelativeQuadTo

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

Common
data class RelativeQuadTo(val dx1: Float, val dy1: Float, val dx2: Float, 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.