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