a method

a

Adds an ‘Elliptical Arc Curve’ command to the path data.

Returns

The current PathBuilder instance.

def a(self, r1, r2, angle, large_arc_flag, sweep_flag, x, y):
    ...
ParameterTypeDescription
r1floatThe x-radius of the ellipse.
r2floatThe y-radius of the ellipse.
anglefloatThe rotation angle of the ellipse in degrees.
large_arc_flagboolFlag indicating if the arc should be greater than or equal to 180 degrees.
sweep_flagboolFlag indicating if the arc should be drawn in a positive angle direction.
xfloatThe x-coordinate of the end point of the arc.
yfloatThe y-coordinate of the end point of the arc.

See Also