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

```kotlin
data class RelativeLineTo(val dx: Float, val dy: Float) : PathNode()
```

Draws a line from the current point to a new point, defined by a relative offset. Corresponds
to the `l` path data command.

#### Parameters

| | |
| --- | --- |
| dx | The relative change in the x-coordinate. |
| dy | The relative change in the y-coordinate. |