(staticmethod) Create a new null :class:`Bbox` from (inf, inf) to (-inf, -inf).
()
| 800 | |
| 801 | @staticmethod |
| 802 | def null(): |
| 803 | """ |
| 804 | (staticmethod) Create a new null :class:`Bbox` from (inf, inf) to |
| 805 | (-inf, -inf). |
| 806 | """ |
| 807 | return Bbox(np.array([[np.inf, np.inf], [-np.inf, -np.inf]], float)) |
| 808 | |
| 809 | @staticmethod |
| 810 | def from_bounds(x0, y0, width, height): |