The second of the pair of *y* coordinates that define the bounding box. This is not guaranteed to be greater than :attr:`y0` (for that, use :attr:`~BboxBase.ymax`).
(self)
| 266 | |
| 267 | @property |
| 268 | def y1(self): |
| 269 | """ |
| 270 | The second of the pair of *y* coordinates that define the bounding box. |
| 271 | |
| 272 | This is not guaranteed to be greater than :attr:`y0` (for that, use |
| 273 | :attr:`~BboxBase.ymax`). |
| 274 | """ |
| 275 | return self.get_points()[1, 1] |
| 276 | |
| 277 | @property |
| 278 | def p0(self): |
nothing calls this directly
no test coverage detected