pub trait PartialCrossProduct<RHS = Self> {
    type Output;

    fn cross(&self, other: &RHS) -> Self::Output;
}
Expand description

Cross product abstraction

Required Associated Types

Output

Required Methods

Compute cross product

Implementations on Foreign Types

Implementors