Context.arcNegative
void arcNegative(double xc, double yc, double radius, double angle1, double angle2)Adds a circular arc of the given radius to the current path. The arc is centered at (xc, yc), begins at angle1 and proceeds in the direction of decreasing angles to end at angle2. If angle2 is greater than angle1 it will be progressively decreased by
<literal>2*M_PI</literal> until it is less than angle1.See [cairo.context.Context.arc] for more details. This function differs only in the direction of the arc between the two angles.
Parameters
xc | X position of the center of the arc |
yc | Y position of the center of the arc |
radius | the radius of the arc |
angle1 | the start angle, in radians |
angle2 | the end angle, in radians |