Edit

SKPathBuilder.RQuadTo Method

Definition

Overloads

Name Description
RQuadTo(Single, Single, Single, Single)

Appends a relative quadratic Bézier curve to the current contour using offset coordinates.

RQuadTo(SKPoint, SKPoint)

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

RQuadTo(Single, Single, Single, Single)

Appends a relative quadratic Bézier curve to the current contour using offset coordinates.

public void RQuadTo(float dx0, float dy0, float dx1, float dy1);

Parameters

dx0
Single

The x-offset from the current point to the control point.

dy0
Single

The y-offset from the current point to the control point.

dx1
Single

The x-offset from the current point to the end point.

dy1
Single

The y-offset from the current point to the end point.

Applies to

RQuadTo(SKPoint, SKPoint)

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

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

Parameters

point0
SKPoint

The offset from the current point to the control point.

point1
SKPoint

The offset from the current point to the end point.

Applies to