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