Class

RemotePathNode.ConicTo

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

Source set: Android
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.

Content updated: