Type Definition wedged::algebra::TriVec5

source · []
pub type TriVec5<T> = TriVecN<T, U5>;
Expand description

A 5-dimensional trivector

Implementations

Constructs a TriVec5 directly from components

Examples
let arr = [6, 2, 8, 3, 1, 8, 5, 3, 0, 7];
let x = TriVec5::new(6, 2, 8, 3, 1, 8, 5, 3, 0, 7);

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