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