| |
- Artist
- matplotlib.transforms.RWRef(matplotlib.transforms.RRef)
-
- DPI
class Artist |
|
Abstract base class for someone who renders into a Figure
Public attributes
dpi : a DPI instance
bbox : a Bound2D instance in display coords
transform : a Transform instance
renderer : the last renderer used to draw, or None |
|
Methods defined here:
- __init__(self, dpi, bbox)
- draw(self, renderer=None, *args, **kwargs)
- Derived classes drawing method
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- get_child_artists(self)
- Return all artists contained in self
- get_clip_on(self)
- Return whether artist uses clipping
- get_dpi(self)
- Get the DPI of the display
- get_visible(self)
- return the artist's visiblity
- get_window_extent(self, renderer=None)
- Return the window extent of the Artist as a Bound2D instance
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- set_child_attr(self, attr, val)
- Set attribute attr for self, and all child artists
- set_clip_on(self, b)
- Set whether artist is clipped to bbox
- 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_visible(self, b)
- set the artist's visiblity
Data and other attributes defined here:
- aname = 'Artist'
|
|