Trait geomath::prelude::Cross[][src]

pub trait Cross where
    Self: Copy + Clone
{ fn set_cross(&mut self, rhs: &Self) -> &mut Self; fn cross(&self, rhs: &Self) -> Self { ... } }
Expand description

Stable cross product of two vectors

Required methods

Set the cross product between two vectors

Provided methods

Get the cross product between two vectors

Implementors