pub type Vector2d<T> = Vector<T, 2>;
Available on crate feature
alg
only.Expand description
A static 2-dimensional vector.
Aliased Type§
struct Vector2d<T> {
pub coords: [T; 2],
}
Fields§
§coords: [T; 2]
The vector coordinates in some basis.