The bottom edge of the bounding box.
(self)
| 301 | |
| 302 | @property |
| 303 | def ymin(self): |
| 304 | """The bottom edge of the bounding box.""" |
| 305 | return np.min(self.get_points()[:, 1]) |
| 306 | |
| 307 | @property |
| 308 | def xmax(self): |
nothing calls this directly
no test coverage detected