---
title: "RemotePathNode.RelativeConicTo"
description: "Draws a conic curve from the current point to a new point using relative coordinates."
type: "class"
lastmod: "2026-09-24"
---
## API Reference

> Source set: Android

```kotlin
public data class RelativeConicTo(
        val dx1: RemoteFloat,
        val dy1: RemoteFloat,
        val dx2: RemoteFloat,
        val dy2: RemoteFloat,
        val weight: RemoteFloat,
    ) : RemotePathNode()
```

Draws a conic curve from the current point to a new point using relative coordinates.

#### 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. |
| weight | The weight of the conic curve. |
