:attr:`p1` is the second pair of (*x*, *y*) coordinates that define the bounding box. It is not guaranteed to be the top-right corner. For that, use :attr:`max`.
(self)
| 326 | |
| 327 | @property |
| 328 | def p1(self): |
| 329 | """ |
| 330 | :attr:`p1` is the second pair of (*x*, *y*) coordinates that |
| 331 | define the bounding box. It is not guaranteed to be the top-right |
| 332 | corner. For that, use :attr:`max`. |
| 333 | """ |
| 334 | return self.get_points()[1] |
| 335 | |
| 336 | @property |
| 337 | def xmin(self): |
nothing calls this directly
no test coverage detected