The first of the pair of *x* coordinates that define the bounding box. This is not guaranteed to be less than :attr:`x1` (for that, use :attr:`~BboxBase.xmin`).
(self)
| 236 | |
| 237 | @property |
| 238 | def x0(self): |
| 239 | """ |
| 240 | The first of the pair of *x* coordinates that define the bounding box. |
| 241 | |
| 242 | This is not guaranteed to be less than :attr:`x1` (for that, use |
| 243 | :attr:`~BboxBase.xmin`). |
| 244 | """ |
| 245 | return self.get_points()[0, 0] |
| 246 | |
| 247 | @property |
| 248 | def y0(self): |
nothing calls this directly
no test coverage detected