pub type Point = Point2D<Coord>;
A two-dimensional point
struct Point { pub x: f32, pub y: f32, }
x: f32
y: f32