MCPcopy
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/matplotlib/offsetbox.py:211–219  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

209 Being an artist itself, all keyword arguments are passed on to `.Artist`.
210 """
211 def __init__(self, **kwargs):
212 super().__init__()
213 self._internal_update(kwargs)
214 # Clipping has not been implemented in the OffsetBox family, so
215 # disable the clip flag for consistency. It can always be turned back
216 # on to zero effect.
217 self.set_clip_on(False)
218 self._children = []
219 self._offset = (0, 0)
220
221 def set_figure(self, fig):
222 """

Callers

nothing calls this directly

Calls 3

_internal_updateMethod · 0.80
__init__Method · 0.45
set_clip_onMethod · 0.45

Tested by

no test coverage detected