<div class='sourceset sourceset-android'>Android</div>

```kotlin
public data class RelativeQuadTo(
        val dx1: RemoteFloat,
        val dy1: RemoteFloat,
        val dx2: RemoteFloat,
        val dy2: RemoteFloat,
    ) : RemotePathNode(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. |