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