:attr:`y0` is the first of the pair of *y* coordinates that define the bounding box. :attr:`y0` is not guaranteed to be less than :attr:`y1`. If you require that, use :attr:`ymin`.
(self)
| 290 | |
| 291 | @property |
| 292 | def y0(self): |
| 293 | """ |
| 294 | :attr:`y0` is the first of the pair of *y* coordinates that |
| 295 | define the bounding box. :attr:`y0` is not guaranteed to be less than |
| 296 | :attr:`y1`. If you require that, use :attr:`ymin`. |
| 297 | """ |
| 298 | return self.get_points()[0, 1] |
| 299 | |
| 300 | @property |
| 301 | def x1(self): |
nothing calls this directly
no test coverage detected