SKPath.RConicTo Method

Definition

Overloads

RConicTo(SKPoint, SKPoint, Single)

Same as ConicTo(SKPoint, SKPoint, Single) but the coordinates are considered relative to the last point on this contour.

RConicTo(Single, Single, Single, Single, Single)

Same as ConicTo(Single, Single, Single, Single, Single) but the coordinates are considered relative to the last point on this contour.

RConicTo(SKPoint, SKPoint, Single)

Same as ConicTo(SKPoint, SKPoint, Single) but the coordinates are considered relative to the last point on this contour.

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

Parameters

point0
SKPoint

The amount to add to the coordinates of the last point on this contour, to specify the control point of the conic curve.

point1
SKPoint

The amount to add to the coordinates of the last point on this contour, to specify the end point of the conic curve.

w
Single

The weight of the conic curve.

Remarks

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

Applies to

RConicTo(Single, Single, Single, Single, Single)

Same as ConicTo(Single, Single, Single, Single, Single) but the coordinates are considered relative to the last point on this contour.

public void RConicTo (float dx0, float dy0, float dx1, float dy1, float w);

Parameters

dx0
Single

The amount to add to the x-coordinate of the last point on this contour, to specify the control point of the conic curve.

dy0
Single

The amount to add to the y-coordinate of the last point on this contour, to specify the control point of the conic curve.

dx1
Single

The amount to add to the x-coordinate of the last point on this contour, to specify the end point of the conic curve.

dy1
Single

The amount to add to the y-coordinate of the last point on this contour, to specify the end point of the conic curve.

w
Single

The weight of the conic curve.

Remarks

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

Applies to