The first pair of (*x*, *y*) coordinates that define the bounding box. This is not guaranteed to be the bottom-left corner (for that, use :attr:`~BboxBase.min`).
(self)
| 276 | |
| 277 | @property |
| 278 | def p0(self): |
| 279 | """ |
| 280 | The first pair of (*x*, *y*) coordinates that define the bounding box. |
| 281 | |
| 282 | This is not guaranteed to be the bottom-left corner (for that, use |
| 283 | :attr:`~BboxBase.min`). |
| 284 | """ |
| 285 | return self.get_points()[0] |
| 286 | |
| 287 | @property |
| 288 | def p1(self): |
nothing calls this directly
no test coverage detected