pub type Vector = Vector2D<f32>;
struct Vector { pub x: f32, pub y: f32, }
x: f32
The x (traditionally, horizontal) coordinate.
x
y: f32
The y (traditionally, vertical) coordinate.
y