The top edge of the bounding box.
(self)
| 311 | |
| 312 | @property |
| 313 | def ymax(self): |
| 314 | """The top edge of the bounding box.""" |
| 315 | return np.max(self.get_points()[:, 1]) |
| 316 | |
| 317 | @property |
| 318 | def min(self): |
nothing calls this directly
no test coverage detected