| |
- matplotlib.artist.Artist
-
- Patch
-
- Polygon
- Rectangle
- RegularPolygon
-
- Circle
class Circle(RegularPolygon) |
|
A circle patch |
|
- Method resolution order:
- Circle
- RegularPolygon
- Patch
- matplotlib.artist.Artist
Methods defined here:
- __init__(self, xy, radius=5, edgecolor='k', facecolor='b', fill=1, resolution=20)
Methods inherited from RegularPolygon:
- get_verts(self)
Methods inherited from Patch:
- copy_properties(self, other)
- draw(self, renderer)
- get_edgecolor(self)
- get_facecolor(self)
- get_linewidth(self)
- get_window_extent(self, renderer=None)
- set_edgecolor(self, color)
- set_facecolor(self, color)
- set_fill(self, b)
- set_linewidth(self, w)
Methods inherited from matplotlib.artist.Artist:
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_clip_on(self)
- Return whether artist uses clipping
- get_transform(self)
- return the Transformation instance used by this artist
- get_visible(self)
- return the artist's visiblity
- is_figure_set(self)
- is_transform_set(self)
- Artist has transform explicity let
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_clip_box(self, clipbox)
- Set the artist's clip Bbox
- set_clip_on(self, b)
- Set whether artist uses clipping
- set_figure(self, fig)
- Set the figure instance the artist belong to
- set_lod(self, on)
- Set Level of Detail on or off. If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
- set_transform(self, t)
- set the Transformation instance used by this artist
- set_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
|
class Patch(matplotlib.artist.Artist) |
|
A patch is a 2D thingy with a face color and an edge color |
|
Methods defined here:
- __init__(self, edgecolor='k', facecolor='b', fill=1)
- copy_properties(self, other)
- draw(self, renderer)
- get_edgecolor(self)
- get_facecolor(self)
- get_linewidth(self)
- get_verts(self)
- Return the vertices of the patch
- get_window_extent(self, renderer=None)
- set_edgecolor(self, color)
- set_facecolor(self, color)
- set_fill(self, b)
- set_linewidth(self, w)
Methods inherited from matplotlib.artist.Artist:
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_clip_on(self)
- Return whether artist uses clipping
- get_transform(self)
- return the Transformation instance used by this artist
- get_visible(self)
- return the artist's visiblity
- is_figure_set(self)
- is_transform_set(self)
- Artist has transform explicity let
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_clip_box(self, clipbox)
- Set the artist's clip Bbox
- set_clip_on(self, b)
- Set whether artist uses clipping
- set_figure(self, fig)
- Set the figure instance the artist belong to
- set_lod(self, on)
- Set Level of Detail on or off. If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
- set_transform(self, t)
- set the Transformation instance used by this artist
- set_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
|
class Polygon(Patch) |
|
A general polygon patch. xy is a sequence of x,y 2 tuples tuples |
|
- Method resolution order:
- Polygon
- Patch
- matplotlib.artist.Artist
Methods defined here:
- __init__(self, xy, edgecolor='k', facecolor='b', fill=0)
- get_verts(self)
Methods inherited from Patch:
- copy_properties(self, other)
- draw(self, renderer)
- get_edgecolor(self)
- get_facecolor(self)
- get_linewidth(self)
- get_window_extent(self, renderer=None)
- set_edgecolor(self, color)
- set_facecolor(self, color)
- set_fill(self, b)
- set_linewidth(self, w)
Methods inherited from matplotlib.artist.Artist:
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_clip_on(self)
- Return whether artist uses clipping
- get_transform(self)
- return the Transformation instance used by this artist
- get_visible(self)
- return the artist's visiblity
- is_figure_set(self)
- is_transform_set(self)
- Artist has transform explicity let
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_clip_box(self, clipbox)
- Set the artist's clip Bbox
- set_clip_on(self, b)
- Set whether artist uses clipping
- set_figure(self, fig)
- Set the figure instance the artist belong to
- set_lod(self, on)
- Set Level of Detail on or off. If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
- set_transform(self, t)
- set the Transformation instance used by this artist
- set_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
|
class Rectangle(Patch) |
|
Draw a rectangle with lower left at xy=(x,y) with specified
width and height |
|
- Method resolution order:
- Rectangle
- Patch
- matplotlib.artist.Artist
Methods defined here:
- __init__(self, xy, width, height, edgecolor='k', facecolor='b', fill=True)
- xy is an x,y tuple lower, left
width and height are width and height of rectangle
fill is a boolean indicating whether to fill the rectangle
- get_height(self)
- Return the height of the rectangle
- get_verts(self)
- Return the vertices of the rectangle
- get_width(self)
- Return the width of the rectangle
- get_x(self)
- Return the left coord of the rectangle
- get_y(self)
- Return the bottom coord of the rectangle
- set_bounds(self, l, b, w, h)
- set_height(self, h)
- Set the width rectangle
- set_width(self, w)
- Set the width rectangle
- set_x(self, x)
- Set the left coord of the rectangle
- set_y(self, y)
- Set the bottom coord of the rectangle
Methods inherited from Patch:
- copy_properties(self, other)
- draw(self, renderer)
- get_edgecolor(self)
- get_facecolor(self)
- get_linewidth(self)
- get_window_extent(self, renderer=None)
- set_edgecolor(self, color)
- set_facecolor(self, color)
- set_fill(self, b)
- set_linewidth(self, w)
Methods inherited from matplotlib.artist.Artist:
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_clip_on(self)
- Return whether artist uses clipping
- get_transform(self)
- return the Transformation instance used by this artist
- get_visible(self)
- return the artist's visiblity
- is_figure_set(self)
- is_transform_set(self)
- Artist has transform explicity let
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_clip_box(self, clipbox)
- Set the artist's clip Bbox
- set_clip_on(self, b)
- Set whether artist uses clipping
- set_figure(self, fig)
- Set the figure instance the artist belong to
- set_lod(self, on)
- Set Level of Detail on or off. If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
- set_transform(self, t)
- set the Transformation instance used by this artist
- set_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
|
class RegularPolygon(Patch) |
|
A regular polygon patch. xy is a length 2 tuple (the center)
numVertices is the number of vertices. Radius is the distance
from the center to each of the vertices. Orientation is in
radians and rotates the polygon. |
|
- Method resolution order:
- RegularPolygon
- Patch
- matplotlib.artist.Artist
Methods defined here:
- __init__(self, xy, numVertices, radius=5, orientation=0, edgecolor='k', facecolor='b', fill=1)
- get_verts(self)
Methods inherited from Patch:
- copy_properties(self, other)
- draw(self, renderer)
- get_edgecolor(self)
- get_facecolor(self)
- get_linewidth(self)
- get_window_extent(self, renderer=None)
- set_edgecolor(self, color)
- set_facecolor(self, color)
- set_fill(self, b)
- set_linewidth(self, w)
Methods inherited from matplotlib.artist.Artist:
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_clip_on(self)
- Return whether artist uses clipping
- get_transform(self)
- return the Transformation instance used by this artist
- get_visible(self)
- return the artist's visiblity
- is_figure_set(self)
- is_transform_set(self)
- Artist has transform explicity let
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_clip_box(self, clipbox)
- Set the artist's clip Bbox
- set_clip_on(self, b)
- Set whether artist uses clipping
- set_figure(self, fig)
- Set the figure instance the artist belong to
- set_lod(self, on)
- Set Level of Detail on or off. If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
- set_transform(self, t)
- set the Transformation instance used by this artist
- set_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
| |