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

```kotlin
public data class ReflectiveQuadTo(val x: RemoteFloat, val y: RemoteFloat) :
        RemotePathNode(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. |