:attr:`xmax` is the right edge of the bounding box.
(self)
| 349 | |
| 350 | @property |
| 351 | def xmax(self): |
| 352 | """ |
| 353 | :attr:`xmax` is the right edge of the bounding box. |
| 354 | """ |
| 355 | return np.max(self.get_points()[:, 0]) |
| 356 | |
| 357 | @property |
| 358 | def ymax(self): |
nothing calls this directly
no test coverage detected