(staticmethod) Create a new unit :class:`Bbox` from (0, 0) to (1, 1).
()
| 792 | |
| 793 | @staticmethod |
| 794 | def unit(): |
| 795 | """ |
| 796 | (staticmethod) Create a new unit :class:`Bbox` from (0, 0) to |
| 797 | (1, 1). |
| 798 | """ |
| 799 | return Bbox(np.array([[0.0, 0.0], [1.0, 1.0]], float)) |
| 800 | |
| 801 | @staticmethod |
| 802 | def null(): |