Trait building_blocks::prelude::DotProduct[][src]

pub trait DotProduct {
    type Scalar: Copy;
    fn dot(self, other: Self) -> Self::Scalar;
}

Associated Types

Required methods

The vector dot product.

Implementors