pub type Point2d = Point2<f64>;
A 2D point
#[repr(C)]pub struct Point2d { pub x: f64, pub y: f64, }
x: f64
y: f64