Create a new `Bbox` from *x0*, *y0*, *width* and *height*. *width* and *height* may be negative.
(x0, y0, width, height)
| 818 | |
| 819 | @staticmethod |
| 820 | def from_bounds(x0, y0, width, height): |
| 821 | """ |
| 822 | Create a new `Bbox` from *x0*, *y0*, *width* and *height*. |
| 823 | |
| 824 | *width* and *height* may be negative. |
| 825 | """ |
| 826 | return Bbox.from_extents(x0, y0, x0 + width, y0 + height) |
| 827 | |
| 828 | @staticmethod |
| 829 | def from_extents(*args, minpos=None): |