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