:attr:`x0` is the first of the pair of *x* coordinates that define the bounding box. :attr:`x0` is not guaranteed to be less than :attr:`x1`. If you require that, use :attr:`xmin`.
(self)
| 281 | |
| 282 | @property |
| 283 | def x0(self): |
| 284 | """ |
| 285 | :attr:`x0` is the first of the pair of *x* coordinates that |
| 286 | define the bounding box. :attr:`x0` is not guaranteed to be less than |
| 287 | :attr:`x1`. If you require that, use :attr:`xmin`. |
| 288 | """ |
| 289 | return self.get_points()[0, 0] |
| 290 | |
| 291 | @property |
| 292 | def y0(self): |
nothing calls this directly
no test coverage detected