ponsic-types 0.1.1

The dependency of the `ponsic` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod point;
mod rect;
mod size;

pub use point::Point;
pub use rect::Rect;
pub use size::Size;

pub type Pointi = Point<i32>;
pub type Pointf = Point<f32>;
pub type Sizei = Size<u32>;
pub type Sizef = Size<f32>;
pub type Recti = Rect<i32>;
pub type Rectf = Rect<f32>;