Edit

SKPath.ConicTo Method

Definition

Overloads

Name Description
ConicTo(SKPoint, SKPoint, Single)
Obsolete.

Adds a conic path from the last point.

ConicTo(Single, Single, Single, Single, Single)
Obsolete.

Adds a conic path from the last point.

ConicTo(SKPoint, SKPoint, Single)

Caution

Use SKPathBuilder instead.

Adds a conic path from the last point.

[System.Obsolete("Use SKPathBuilder instead.")]
public void ConicTo(SkiaSharp.SKPoint point0, SkiaSharp.SKPoint point1, float w);

Parameters

point0
SKPoint

The coordinates of the control point of the conic curve.

point1
SKPoint

The coordinates of the end point of the conic curve.

w
Single

The weight of the conic curve.

Attributes

Remarks

If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).

Applies to

ConicTo(Single, Single, Single, Single, Single)

Caution

Use SKPathBuilder instead.

Adds a conic path from the last point.

[System.Obsolete("Use SKPathBuilder instead.")]
public void ConicTo(float x0, float y0, float x1, float y1, float w);

Parameters

x0
Single

The x-coordinate of the control point of the conic curve.

y0
Single

The y-coordinate of the control point of the conic curve.

x1
Single

The x-coordinate of the end point of the conic curve.

y1
Single

The y-coordinate of the end point of the conic curve.

w
Single

The weight of the conic curve.

Attributes

Remarks

If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).

Applies to