The second pair of (*x*, *y*) coordinates that define the bounding box. This is not guaranteed to be the top-right corner (for that, use :attr:`~BboxBase.max`).
(self)
| 286 | |
| 287 | @property |
| 288 | def p1(self): |
| 289 | """ |
| 290 | The second pair of (*x*, *y*) coordinates that define the bounding box. |
| 291 | |
| 292 | This is not guaranteed to be the top-right corner (for that, use |
| 293 | :attr:`~BboxBase.max`). |
| 294 | """ |
| 295 | return self.get_points()[1] |
| 296 | |
| 297 | @property |
| 298 | def xmin(self): |
nothing calls this directly
no test coverage detected