create_svg_path_seg_curveto_cubic_abs method

create_svg_path_seg_curveto_cubic_abs

Returns a stand-alone, parentless SVGPathSegCurvetoCubicAbs object.

Returns

A stand-alone, parentless SVGPathSegCurvetoCubicAbs object.

def create_svg_path_seg_curveto_cubic_abs(self, x, y, x1, y1, x2, y2):
    ...
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.
x1floatThe absolute X coordinate for the first control point.
y1floatThe absolute Y coordinate for the first control point.
x2floatThe absolute X coordinate for the second control point.
y2floatThe absolute Y coordinate for the second control point.

See Also