(self, renderer=None)
| 2245 | return Bbox.union(bboxes) |
| 2246 | |
| 2247 | def get_tightbbox(self, renderer=None): |
| 2248 | # docstring inherited |
| 2249 | if not self._check_xy(renderer): |
| 2250 | return Bbox.null() |
| 2251 | return super().get_tightbbox(renderer) |
| 2252 | |
| 2253 | |
| 2254 | _docstring.interpd.register(Annotation=Annotation.__init__.__doc__) |
nothing calls this directly
no test coverage detected