bezier_curve_to method
bezier_curve_to
Adds a cubic Bézier curve to the current path.
def bezier_curve_to(self, cp_1x, cp_1y, cp_2x, cp_2y, x, y):
    ...
| Parameter | Type | Description | 
|---|---|---|
| cp_1x | float | The x-coordinate of the first control point. | 
| cp_1y | float | The y-coordinate of the first control point. | 
| cp_2x | float | The x-coordinate of the second control point. | 
| cp_2y | float | The y-coordinate of the second control point. | 
| x | float | The x-coordinate of the ending point. | 
| y | float | The y-coordinate of the ending point. | 
See Also
- module 
aspose.svg.rendering - class 
ICanvas