matplotlib.patches.Rectangle#
- classmatplotlib.patches.Rectangle(xy,width,height,*,angle=0.0,rotation_point='xy',**kwargs)[source]#
Bases:
Patch
A rectangle defined via an anchor pointxy and itswidth andheight.
The rectangle extends from
xy[0]
toxy[0]+width
in x-directionand fromxy[1]
toxy[1]+height
in y-direction.:+------------------+:||:height|:||:(xy)----width-----+
One may picturexy as the bottom left corner, but which cornerxy isactually depends on the direction of the axis and the sign ofwidthandheight; e.g.xy would be the bottom right corner if the x-axiswas inverted or ifwidth was negative.
- Parameters:
- xy(float, float)
The anchor point.
- widthfloat
Rectangle width.
- heightfloat
Rectangle height.
- anglefloat, default: 0
Rotation in degrees anti-clockwise about the rotation point.
- rotation_point{'xy', 'center', (number, number)}, default: 'xy'
If
'xy'
, rotate around the anchor point. If'center'
rotatearound the center. If 2-tuple of number, rotate around thiscoordinate.
- Other Parameters:
- **kwargs
Patch
properties 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
- get_patch_transform()[source]#
Return the
Transform
instance mapping patch coordinatesto data coordinates.For example, one may define a patch of a circle which represents aradius of 5 by providing coordinates for a unit circle, and atransform which scales the coordinates (the patch coordinate) by 5.
- propertyrotation_point#
The rotation point of the patch.
- set(*,agg_filter=<UNSET>,alpha=<UNSET>,angle=<UNSET>,animated=<UNSET>,antialiased=<UNSET>,bounds=<UNSET>,capstyle=<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>,x=<UNSET>,xy=<UNSET>,y=<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
unknown
bool
bool or None
(left, bottom, width, height)
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
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
unknown
unknown
(float, float)
unknown
float
- set_angle(angle)[source]#
Set the rotation angle in degrees.
The rotation is performed anti-clockwise aroundxy.
- set_bounds(*args)[source]#
Set the bounds of the rectangle asleft,bottom,width,height.
The values may be passed as separate parameters or as a tuple:
set_bounds(left,bottom,width,height)set_bounds((left,bottom,width,height))
- propertyxy#
Return the left and bottom coords of the rectangle as a tuple.
Examples usingmatplotlib.patches.Rectangle
#

Create boxes from error bars using PatchCollection