1//! Mathematical helper functions and types.
2mod rect;
3mod utils;
4
5pub use self::rect::Rect;
6pub(super) use utils::resize_dimensions;
7