Type Definition wedged::algebra::Multivector3

source · []
pub type Multivector3<T> = Multivector<T, U3>;
Expand description

A 3-dimensional multivector

Implementations

Constructs a Multivector3 directly from components

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

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