[]
Adds the "curveto" command to the path.
public void AddCurveTo(bool relative, float x1, float y1, float x2, float y2, float x, float y)
Public Sub AddCurveTo(relative As Boolean, x1 As Single, y1 As Single, x2 As Single, y2 As Single, x As Single, y As Single)
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. |