(self, *args, **kwargs)
| 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 | """ |
nothing calls this directly
no test coverage detected