pub trait Cross { /// Computes the cross product between two elements (usually vectors). fn cross(&self, other : &Self) -> Result; }