The right edge of the bounding box.
(self)
| 306 | |
| 307 | @property |
| 308 | def xmax(self): |
| 309 | """The right edge of the bounding box.""" |
| 310 | return np.max(self.get_points()[:, 0]) |
| 311 | |
| 312 | @property |
| 313 | def ymax(self): |
nothing calls this directly
no test coverage detected