create_circular_segment method

create_circular_segment

Creates a path geometry representing a circular segment between two angles.

Returns

The XPS path geometry.

def create_circular_segment(self, center, radius, start_angle, end_angle):
    ...
ParameterTypeDescription
centeraspose.pydrawing.PointFThe center of the circle.
radiusfloatThe radius of the circle.
start_anglefloatThe starting angle.
end_anglefloatThe ending angle.

See Also