Create a new null `Bbox` from (inf, inf) to (-inf, -inf).
()
| 813 | |
| 814 | @staticmethod |
| 815 | def null(): |
| 816 | """Create a new null `Bbox` from (inf, inf) to (-inf, -inf).""" |
| 817 | return Bbox([[np.inf, np.inf], [-np.inf, -np.inf]]) |
| 818 | |
| 819 | @staticmethod |
| 820 | def from_bounds(x0, y0, width, height): |