create_arc_segment method

create_arc_segment

Creates a new elliptical arc segment.

Returns

New elliptical arc segment.

def create_arc_segment(self, point, size, rotation_angle, is_large_arc, sweep_direction, is_stroked):
    ...
ParameterTypeDescription
pointaspose.pydrawing.PointFThe endpoint of the elliptical arc.
sizeaspose.pydrawing.SizeFThe x and y radius of the elliptical arc as an x,y pair.
rotation_anglefloatIndicates how the ellipse is rotated relative to the current coordinate system.
is_large_arcboolDetermines whether the arc is drawn with a sweep of 180 or greater.
sweep_directionaspose.page.xps.xpsmodel.XpsSweepDirectionThe direction in which the arc is drawn.
is_strokedboolSpecifies whether the stroke for this segment of the path is drawn.

See Also