The left edge of the bounding box.
(self)
| 296 | |
| 297 | @property |
| 298 | def xmin(self): |
| 299 | """The left edge of the bounding box.""" |
| 300 | return np.min(self.get_points()[:, 0]) |
| 301 | |
| 302 | @property |
| 303 | def ymin(self): |
nothing calls this directly
no test coverage detected