pub type Vector<L> = Vector2D<L, UnknownUnit>;Expand description
2D Vector.
Aliased Type§
struct Vector<L> {
pub x: L,
pub y: L,
}Fields§
§x: LThe x (traditionally, horizontal) coordinate.
y: LThe y (traditionally, vertical) coordinate.