pub type I32Point = Point<i32>;
A coordinate stored as an integer with an application-defined scale.
pub struct I32Point { pub x: i32, pub y: i32, }
x: i32
y: i32