Trait nalgebra::Dot [] [src]

pub trait Dot<N> {
    fn dot(&self, other: &Self) -> N;
}

Traits of objects having a dot product.

Required Methods

fn dot(&self, other: &Self) -> N

Computes the dot (inner) product of two vectors.

Implementors