:attr:`ymin` is the bottom edge of the bounding box.
(self)
| 342 | |
| 343 | @property |
| 344 | def ymin(self): |
| 345 | """ |
| 346 | :attr:`ymin` is the bottom edge of the bounding box. |
| 347 | """ |
| 348 | return np.min(self.get_points()[:, 1]) |
| 349 | |
| 350 | @property |
| 351 | def xmax(self): |
nothing calls this directly
no test coverage detected