SKPathBuilder.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
| 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.