Calculate the data limits and return them as a `.Bbox`.
(self, transData)
| 1503 | self.set_verts(verts) |
| 1504 | |
| 1505 | def get_datalim(self, transData): |
| 1506 | """Calculate the data limits and return them as a `.Bbox`.""" |
| 1507 | datalim = transforms.Bbox.null() |
| 1508 | datalim.update_from_data_xy((self.get_transform() - transData).transform( |
| 1509 | np.concatenate([self._bbox, [self._bbox.minpos]]))) |
| 1510 | return datalim |
| 1511 | |
| 1512 | def _make_verts(self, t, f1, f2, where): |
| 1513 | """ |
nothing calls this directly
no test coverage detected