Returns True if the :class:`Bbox` is the unit bounding box from (0, 0) to (1, 1).
(self)
| 273 | return self.get_points() |
| 274 | |
| 275 | def is_unit(self): |
| 276 | """ |
| 277 | Returns True if the :class:`Bbox` is the unit bounding box |
| 278 | from (0, 0) to (1, 1). |
| 279 | """ |
| 280 | return list(self.get_points().flatten()) == [0., 0., 1., 1.] |
| 281 | |
| 282 | @property |
| 283 | def x0(self): |
nothing calls this directly
no test coverage detected