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