[]
Adds the "quadratic Bézier curveto" command to the path.
public void AddQuadraticBezierCurveTo(bool relative, float x1, float y1, float x, float y)
| Type | Name | Description |
|---|---|---|
| bool | relative | Indicates whether the command uses absolute (false) or relative (true) coordinates. |
| float | x1 | The X-coordinate of the control point. |
| float | y1 | The Y-coordinate of the control point. |
| float | x | The X-coordinate of the destination point. |
| float | y | The Y-coordinate of the destination point. |