bezier_curve_to method
bezier_curve_to
Adds a cubic Bézier curve segment to the path.
def bezier_curve_to(self, control_point_1x, control_point_1y, control_point_2x, control_point_2y, end_point_x, end_point_y):
...
Parameter | Type | Description |
---|---|---|
control_point_1x | float | The x-coordinate of the first control point. |
control_point_1y | float | The y-coordinate of the first control point. |
control_point_2x | float | The x-coordinate of the second control point. |
control_point_2y | float | The y-coordinate of the second control point. |
end_point_x | float | The x-coordinate of the destination point. |
end_point_y | float | The y-coordinate of the destination point. |
See Also
- module
aspose.svg.rendering
- class
IPath