The first of the pair of *y* coordinates that define the bounding box. This is not guaranteed to be less than :attr:`y1` (for that, use :attr:`~BboxBase.ymin`).
(self)
| 246 | |
| 247 | @property |
| 248 | def y0(self): |
| 249 | """ |
| 250 | The first of the pair of *y* coordinates that define the bounding box. |
| 251 | |
| 252 | This is not guaranteed to be less than :attr:`y1` (for that, use |
| 253 | :attr:`~BboxBase.ymin`). |
| 254 | """ |
| 255 | return self.get_points()[0, 1] |
| 256 | |
| 257 | @property |
| 258 | def x1(self): |
nothing calls this directly
no test coverage detected