create_svg_path_seg_arc_abs method

create_svg_path_seg_arc_abs

Returns a stand-alone, parentless SVGPathSegArcAbs object.

Returns

A stand-alone, parentless SVGPathSegArcAbs object.

def create_svg_path_seg_arc_abs(self, x, y, r1, r2, angle, large_arc_flag, sweep_flag):
    ...
ParameterTypeDescription
xfloatThe absolute X coordinate for the end point of this path segment.
yfloatThe absolute Y coordinate for the end point of this path segment.
r1floatThe x-axis radius for the ellipse (i.e., r1).
r2floatThe y-axis radius for the ellipse (i.e., r2).
anglefloatThe rotation angle in degrees for the ellipse’s x-axis relative to the x-axis of the user coordinate system.
large_arc_flagboolThe value of the large-arc-flag parameter.
sweep_flagboolThe value of the large-arc-flag parameter.

See Also