pub type IntPoint = Point2D<i32>;
#[repr(C)]pub struct IntPoint { pub x: i32, pub y: i32, /* private fields */ }
x: i32
y: i32