quadratic_curve_to method

quadratic_curve_to

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

def quadratic_curve_to(self, cpx, cpy, x, y):
    ...
ParameterTypeDescription
cpxfloatThe x axis of the coordinate for the control point.
cpyfloatThe y axis of the coordinate for the control point.
xfloatThe x axis of the coordinate for the end point.
yfloatThe y axis of the coordinate for the end point.

See Also