Get the bounding box of this line.
(self)
| 631 | self._picker = p |
| 632 | |
| 633 | def get_bbox(self): |
| 634 | """Get the bounding box of this line.""" |
| 635 | bbox = Bbox([[0, 0], [0, 0]]) |
| 636 | bbox.update_from_data_xy(self.get_xydata()) |
| 637 | return bbox |
| 638 | |
| 639 | def get_window_extent(self, renderer=None): |
| 640 | bbox = Bbox([[0, 0], [0, 0]]) |