matplotlib.patches.Arc#
- classmatplotlib.patches.Arc(xy,width,height,*,angle=0.0,theta1=0.0,theta2=360.0,**kwargs)[source]#
Bases:
Ellipse
An elliptical arc, i.e. a segment of an ellipse.
Due to internal optimizations, the arc cannot be filled.
- Parameters:
- xy(float, float)
The center of the ellipse.
- widthfloat
The length of the horizontal axis.
- heightfloat
The length of the vertical axis.
- anglefloat
Rotation of the ellipse in degrees (counterclockwise).
- theta1, theta2float, default: 0, 360
Starting and ending angles of the arc in degrees. These valuesare relative toangle, e.g. ifangle = 45 andtheta1 = 90the absolute starting angle is 135.Defaulttheta1 = 0,theta2 = 360, i.e. a complete ellipse.The arc is drawn in the counterclockwise direction.Angles greater than or equal to 360, or smaller than 0, arerepresented by an equivalent angle in the range [0, 360), bytaking the input value mod 360.
- Other Parameters:
- **kwargs
Patch
properties Most
Patch
properties are supported as keyword arguments,exceptfill andfacecolor because filling is not supported.Property
Description
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array and two offsets from the bottom left corner of the image
unknown
bool
bool or None
CapStyle
or {'butt', 'projecting', 'round'}BboxBase
or Nonebool
Patch or (Path, Transform) or None
color or None
color or None
bool
str
{'/', '\', '|', '-', '+', 'x', 'o', 'O', '.', '*'}
unknown
bool
JoinStyle
or {'miter', 'round', 'bevel'}object
{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
float or None
bool
list of
AbstractPathEffect
None or bool or float or callable
bool
(scale: float, length: float, randomness: float)
bool or None
str
bool
float
- **kwargs
- draw(renderer)[source]#
Draw the arc to the givenrenderer.
Notes
Ellipses are normally drawn using an approximation that useseight cubic Bezier splines. The error of this approximationis 1.89818e-6, according to this unverified source:
Lancaster, Don.Approximating a Circle or an Ellipse UsingFour Bezier Cubic Splines.
There is a use case where very large ellipses must be drawnwith very high accuracy, and it is too expensive to render theentire ellipse with enough segments (either splines or linesegments). Therefore, in the case where either radius of theellipse is large enough that the error of the splineapproximation will be visible (greater than one pixel offsetfrom the ideal), a different technique is used.
In that case, only the visible parts of the ellipse are drawn,with each visible arc using a fixed number of spline segments(8). The algorithm proceeds as follows:
The points where the ellipse intersects the axes (or figure)bounding box are located. (This is done by performing an inversetransformation on the bbox such that it is relative to the unitcircle -- this makes the intersection calculation much easier thandoing rotated ellipse intersection directly.)
This uses the "line intersecting a circle" algorithm from:
Vince, John.Geometry for Computer Graphics: Formulae,Examples & Proofs. London: Springer-Verlag, 2005.
The angles of each of the intersection points are calculated.
Proceeding counterclockwise starting in the positivex-direction, each of the visible arc-segments between thepairs of vertices are drawn using the Bezier arcapproximation technique implemented in
Path.arc
.
- set(*,agg_filter=<UNSET>,alpha=<UNSET>,angle=<UNSET>,animated=<UNSET>,antialiased=<UNSET>,capstyle=<UNSET>,center=<UNSET>,clip_box=<UNSET>,clip_on=<UNSET>,clip_path=<UNSET>,color=<UNSET>,edgecolor=<UNSET>,facecolor=<UNSET>,fill=<UNSET>,gid=<UNSET>,hatch=<UNSET>,hatch_linewidth=<UNSET>,height=<UNSET>,in_layout=<UNSET>,joinstyle=<UNSET>,label=<UNSET>,linestyle=<UNSET>,linewidth=<UNSET>,mouseover=<UNSET>,path_effects=<UNSET>,picker=<UNSET>,rasterized=<UNSET>,sketch_params=<UNSET>,snap=<UNSET>,transform=<UNSET>,url=<UNSET>,visible=<UNSET>,width=<UNSET>,zorder=<UNSET>)[source]#
Set multiple properties at once.
Supported properties are
Property
Description
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array and two offsets from the bottom left corner of the image
float or None
float
bool
bool or None
CapStyle
or {'butt', 'projecting', 'round'}(float, float)
BboxBase
or Nonebool
Patch or (Path, Transform) or None
color or None
color or None
bool
str
{'/', '\', '|', '-', '+', 'x', 'o', 'O', '.', '*'}
unknown
float
bool
JoinStyle
or {'miter', 'round', 'bevel'}object
{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
float or None
bool
list of
AbstractPathEffect
None or bool or float or callable
bool
(scale: float, length: float, randomness: float)
bool or None
str
bool
float
float