quadratic_curve_to method

quadratic_curve_to

Adds a quadratic Bézier curve to the current path.

def quadratic_curve_to(self, control_point_x, control_point_y, x, y):
    ...
ParameterTypeDescription
control_point_xfloatThe x-coordinate of the control point.
control_point_yfloatThe y-coordinate of the control point.
xfloatThe x-coordinate of the ending point.
yfloatThe y-coordinate of the ending point.

See Also