pub type Vector2d = Vector2<f64>;
A 2D vector
#[repr(C)]pub struct Vector2d { pub x: f64, pub y: f64, }
x: f64
The x component of the vector.
y: f64
The y component of the vector.