(self, renderer=None)
| 1471 | for child in self.get_children()]) |
| 1472 | |
| 1473 | def get_tightbbox(self, renderer=None): |
| 1474 | # docstring inherited |
| 1475 | if renderer is None: |
| 1476 | renderer = self.get_figure(root=True)._get_renderer() |
| 1477 | self.update_positions(renderer) |
| 1478 | return Bbox.union([child.get_tightbbox(renderer) |
| 1479 | for child in self.get_children()]) |
| 1480 | |
| 1481 | def update_positions(self, renderer): |
| 1482 | """Update pixel positions for the annotated point, the text, and the arrow.""" |
nothing calls this directly
no test coverage detected