Vector

Trait Vector 

Source
pub trait Vector {
    type Algebra;

    // Required method
    fn hat(&self) -> Self::Algebra;
}
Expand description

lie algebra vector representation

Required Associated Types§

Source

type Algebra

algebra type

Required Methods§

Source

fn hat(&self) -> Self::Algebra

map vector to algebra

Implementors§

Source§

impl<T> Vector for Vec6<T>
where T: Copy,

Source§

impl<T> Vector for Vec3<T>
where T: Copy,