matplotlib.patches.Polygon#
- class matplotlib.patches.Polygon(xy, *, closed=True, **kwargs)[source]#
Bases:
PatchA general polygon patch.
xy is a numpy array with shape Nx2.
If closed is True, the polygon will be closed so the starting and ending points are the same.
Valid keyword arguments 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
unknown
bool
antialiasedor aabool or None
CapStyleor {'butt', 'projecting', 'round'}bool
Patch or (Path, Transform) or None
color
edgecoloror eccolor or None
facecoloror fccolor or None
bool
str
{'/', '\', '|', '-', '+', 'x', 'o', 'O', '.', '*'}
bool
JoinStyleor {'miter', 'round', 'bevel'}object
linestyleor ls{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
linewidthor lwfloat or None
bool
None or bool or float or callable
bool
(scale: float, length: float, randomness: float)
bool or None
str
bool
float
- get_xy()[source]#
Get the vertices of the path.
- Returns:
- (N, 2) numpy array
The coordinates of the vertices.
- set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, antialiased=<UNSET>, capstyle=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, closed=<UNSET>, color=<UNSET>, edgecolor=<UNSET>, facecolor=<UNSET>, fill=<UNSET>, gid=<UNSET>, hatch=<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>, xy=<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
scalar or None
bool
antialiasedor aabool or None
CapStyleor {'butt', 'projecting', 'round'}bool
Patch or (Path, Transform) or None
bool
color
edgecoloror eccolor or None
facecoloror fccolor or None
bool
str
{'/', '\', '|', '-', '+', 'x', 'o', 'O', '.', '*'}
bool
JoinStyleor {'miter', 'round', 'bevel'}object
linestyleor ls{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
linewidthor lwfloat or None
bool
None or bool or float or callable
bool
(scale: float, length: float, randomness: float)
bool or None
str
bool
(N, 2) array-like
float
- set_closed(closed)[source]#
Set whether the polygon is closed.
- Parameters:
- closedbool
True if the polygon is closed
- set_xy(xy)[source]#
Set the vertices of the polygon.
- Parameters:
- xy(N, 2) array-like
The coordinates of the vertices.
Notes
Unlike
Path, we do not ignore the last input vertex. If the polygon is meant to be closed, and the last point of the polygon is not equal to the first, we assume that the user has not explicitly passed aCLOSEPOLYvertex, and add it ourselves.
- property xy#
The vertices of the path as (N, 2) numpy array.
Examples using matplotlib.patches.Polygon#
Controlling view limits using margins and sticky_edges
mpl_toolkits.axisartist.floating_axes features
Integral as the area under a curve