1mod point;
2mod rect;
3mod size;
4
5pub use point::Point;
6pub use rect::Rect;
7pub use size::Size;
8
9pub type Pointi = Point<i32>;
10pub type Pointf = Point<f32>;
11pub type Sizei = Size<u32>;
12pub type Sizef = Size<f32>;
13pub type Recti = Rect<i32>;
14pub type Rectf = Rect<f32>;