Class

RemotePathNode.RelativeConicTo

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

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

Content updated: