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

> Source set: Android

```kotlin
public data class ConicTo(
        val x1: RemoteFloat,
        val y1: RemoteFloat,
        val x2: RemoteFloat,
        val y2: RemoteFloat,
        val weight: RemoteFloat,
    ) : RemotePathNode()
```

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

#### Parameters

| | |
| --- | --- |
| x1 | The absolute x-coordinate of the control point. |
| y1 | The absolute y-coordinate of the control point. |
| x2 | The absolute x-coordinate of the curve's end point. |
| y2 | The absolute y-coordinate of the curve's end point. |
| weight | The weight of the conic curve. |
