:attr:`xmin` is the left edge of the bounding box.
(self)
| 335 | |
| 336 | @property |
| 337 | def xmin(self): |
| 338 | """ |
| 339 | :attr:`xmin` is the left edge of the bounding box. |
| 340 | """ |
| 341 | return np.min(self.get_points()[:, 0]) |
| 342 | |
| 343 | @property |
| 344 | def ymin(self): |
nothing calls this directly
no test coverage detected