<div class='sourceset sourceset-common'>Common</div>

```kotlin
data class RelativeReflectiveQuadTo(val dx: Float, val dy: Float) : PathNode(isQuad = true)
```

Draws a smooth quadratic Bézier curve using relative coordinates. This command ensures a
seamless connection by inferring its control point as a reflection of the control point of
the preceding command. Corresponds to the `t` path data command.

#### Parameters

| | |
| --- | --- |
| dx | The relative x-offset of the curve's end point. |
| dy | The relative y-offset of the curve's end point. |