## BoundingBox


An immutable bounding box defined by two corners.


Usage


``` python
BoundingBox(
    min_corner,
    max_corner,
)
```


## Parameters


`min_corner: Coordinate`  
Bottom-left corner.

`max_corner: Coordinate`  
Top-right corner.


## Attributes

| Name | Description |
|----|----|
| [height](#height) | Height of the bounding box. |
| [width](#width) | Width of the bounding box. |

------------------------------------------------------------------------


#### height


Height of the bounding box.


`height: float`


------------------------------------------------------------------------


#### width


Width of the bounding box.


`width: float`
