SKPath.RQuadTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RQuadTo(Single, Single, Single, Single) |
Same as QuadTo(Single, Single, Single, Single) but the coordinates are considered relative to the last point on this contour. |
RQuadTo(SKPoint, SKPoint) |
Same as QuadTo(SKPoint, SKPoint) but the coordinates are considered relative to the last point on this contour. |
RQuadTo(Single, Single, Single, Single)
Same as QuadTo(Single, Single, Single, Single) but the coordinates are considered relative to the last point on this contour.
public void RQuadTo (float dx0, float dy0, float dx1, float dy1);
Parameters
- dx0
- Single
The amount to add to the x-coordinate of the last point on this contour, to specify the control point on a quadratic curve.
- dy0
- Single
The amount to add to the y-coordinate of the last point on this contour, to specify the control point on a quadratic curve.
- dx1
- Single
The amount to add to the x-coordinate of the last point on this contour, to specify end point on a quadratic curve.
- dy1
- Single
The amount to add to the y-coordinate of the last point on this contour, to specify end point on a quadratic curve.
Remarks
If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).
Applies to
RQuadTo(SKPoint, SKPoint)
Same as QuadTo(SKPoint, SKPoint) but the coordinates are considered relative to the last point on this contour.
public void RQuadTo (SkiaSharp.SKPoint point0, SkiaSharp.SKPoint point1);
Parameters
- point0
- SKPoint
The amount to add to the coordinates of the last point on this contour, to specify the control point on a quadratic curve.
- point1
- SKPoint
The amount to add to the coordinates of the last point on this contour, to specify end point on a quadratic curve.
Remarks
If no MoveTo call has been made for this contour, the first point is automatically set to (0, 0).
Applies to
SkiaSharp