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

```kotlin
data class ReflectiveQuadTo(val x: Float, val y: Float) : PathNode(isQuad = true)
```

Draws a smooth quadratic Bézier curve using absolute 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

| | |
| --- | --- |
| x | The absolute x-coordinate of the curve's end point. |
| y | The absolute y-coordinate of the curve's end point. |