pub trait VectorProduct: Vector {
    fn cross(&self, other: &Self) -> Self;
    fn outer(&self, other: &Self) -> Matrix;
}
Expand description

Vector Products

Required Methods

Implementations on Foreign Types

Implementors