pub type Vector = Vector2D<f64, UnknownUnit>;
#[repr(C)]pub struct Vector { pub x: f64, pub y: f64, }
x: f64
The x (traditionally, horizontal) coordinate.
x
y: f64
The y (traditionally, vertical) coordinate.
y