The second of the pair of *x* coordinates that define the bounding box. This is not guaranteed to be greater than :attr:`x0` (for that, use :attr:`~BboxBase.xmax`).
(self)
| 256 | |
| 257 | @property |
| 258 | def x1(self): |
| 259 | """ |
| 260 | The second of the pair of *x* coordinates that define the bounding box. |
| 261 | |
| 262 | This is not guaranteed to be greater than :attr:`x0` (for that, use |
| 263 | :attr:`~BboxBase.xmax`). |
| 264 | """ |
| 265 | return self.get_points()[1, 0] |
| 266 | |
| 267 | @property |
| 268 | def y1(self): |
nothing calls this directly
no test coverage detected