[]
Adds the "curveto" command to the path.
public void AddCurveTo(bool relative, float x1, float y1, float x2, float y2, 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 first control point. |
| float | y1 | The Y-coordinate of the first control point. |
| float | x2 | The X-coordinate of the second control point. |
| float | y2 | The Y-coordinate of the second control point. |
| float | x | The X-coordinate of the destination point. |
| float | y | The Y-coordinate of the destination point. |