pub type Point = Point2D<Coord>;
A two-dimensional point
#[repr(C)]pub struct Point { pub x: f32, pub y: f32, }
x: f32
y: f32