Edit

SKPathBuilder.ConicTo Method

Definition

Overloads

Name Description
ConicTo(SKPoint, SKPoint, Single)

Appends a weighted conic curve to the current contour.

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

Appends a weighted conic curve to the current contour using coordinate values.

ConicTo(SKPoint, SKPoint, Single)

Appends a weighted conic curve to the current contour.

public void ConicTo(SkiaSharp.SKPoint point0, SkiaSharp.SKPoint point1, float w);

Parameters

point0
SKPoint

The control point of the conic.

point1
SKPoint

The end point of the conic.

w
Single

The weight of the conic; values greater than 1 pull the curve toward the control point.

Applies to

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

Appends a weighted conic curve to the current contour using coordinate values.

public void ConicTo(float x0, float y0, float x1, float y1, float w);

Parameters

x0
Single

The x-coordinate of the control point.

y0
Single

The y-coordinate of the control point.

x1
Single

The x-coordinate of the end point.

y1
Single

The y-coordinate of the end point.

w
Single

The weight of the conic.

Applies to