Edit

SKPathBuilder.QuadTo Method

Definition

Overloads

Name Description
QuadTo(SKPoint, SKPoint)

Appends a quadratic Bézier curve to the current contour.

QuadTo(Single, Single, Single, Single)

Appends a quadratic Bézier curve to the current contour using coordinate values.

QuadTo(SKPoint, SKPoint)

Appends a quadratic Bézier curve to the current contour.

public void QuadTo(SkiaSharp.SKPoint point0, SkiaSharp.SKPoint point1);

Parameters

point0
SKPoint

The control point of the quadratic Bézier.

point1
SKPoint

The end point of the quadratic Bézier.

Applies to

QuadTo(Single, Single, Single, Single)

Appends a quadratic Bézier curve to the current contour using coordinate values.

public void QuadTo(float x0, float y0, float x1, float y1);

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.

Applies to