qr method

qr

Adds a relative ‘Quadratic Bezier Curve’ command to the path data.

Returns

The current PathBuilder instance.

def qr(self, x1, y1, x, y):
    ...
ParameterTypeDescription
x1floatThe x-coordinate of the control point, relative to the current position.
y1floatThe y-coordinate of the control point, relative to the current position.
xfloatThe x-coordinate of the end point of the curve, relative to the current position.
yfloatThe y-coordinate of the end point of the curve, relative to the current position.

See Also