:attr:`x1` is the second of the pair of *x* coordinates that define the bounding box. :attr:`x1` is not guaranteed to be greater than :attr:`x0`. If you require that, use :attr:`xmax`.
(self)
| 299 | |
| 300 | @property |
| 301 | def x1(self): |
| 302 | """ |
| 303 | :attr:`x1` is the second of the pair of *x* coordinates that |
| 304 | define the bounding box. :attr:`x1` is not guaranteed to be greater |
| 305 | than :attr:`x0`. If you require that, use :attr:`xmax`. |
| 306 | """ |
| 307 | return self.get_points()[1, 0] |
| 308 | |
| 309 | @property |
| 310 | def y1(self): |
nothing calls this directly
no test coverage detected