MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / __init__

Method __init__

site-packages/matplotlib/offsetbox.py:143–153  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

141 to be drawn at a relative position to its parent.
142 """
143 def __init__(self, *args, **kwargs):
144
145 super().__init__(*args, **kwargs)
146
147 # Clipping has not been implemented in the OffesetBox family, so
148 # disable the clip flag for consistency. It can always be turned back
149 # on to zero effect.
150 self.set_clip_on(False)
151
152 self._children = []
153 self._offset = (0, 0)
154
155 def set_figure(self, fig):
156 """

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
set_clip_onMethod · 0.45

Tested by

no test coverage detected