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