Type Definition wedged::algebra::QuadVec5

source · []
pub type QuadVec5<T> = QuadVecN<T, U5>;
Expand description

A 5-dimensional quadvector

Implementations

Constructs a QuadVec5 directly from components

Examples
let arr = [6, 2, 8, 3, 1];
let x = QuadVec5::new(6, 2, 8, 3, 1);

assert_eq!(x.as_slice(), &arr);

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.