c method
c
Adds a ‘Cubic Bezier Curve’ command to the path data.
Returns
The current PathBuilder instance.
def c(self, x1, y1, x2, y2, x, y):
...
Parameter | Type | Description |
---|---|---|
x1 | float | The x-coordinate of the first control point. |
y1 | float | The y-coordinate of the first control point. |
x2 | float | The x-coordinate of the second control point. |
y2 | float | The y-coordinate of the second control point. |
x | float | The x-coordinate of the end point of the curve. |
y | float | The y-coordinate of the end point of the curve. |
See Also
- module
aspose.svg.builder
- class
PathBuilder