Trait geometric::traits::Dot [] [src]

pub trait Dot<RHS = Self> {
    type Output;
    fn dot(self, other: RHS) -> Self::Output;
}

Associated Types

Required Methods

Compute the dot product.

Implementors