cubic_bezier_to method

cubic_bezier_to

Appends a cubic Bézier curve to the current path. The curve extends from the current point to the point pt2, using pt1 and pt2 as the Bézier control points. The new current point is pt3.

def cubic_bezier_to(self, pt1, pt2, pt3):
    ...
ParameterTypeDescription
pt1aspose.pydrawing.PointFCoordinates of first point
pt2aspose.pydrawing.PointFCoordinates of second point
pt3aspose.pydrawing.PointFCoordinates of third point

See Also