[][src]Trait nova_math::traits::DotProduct

pub trait DotProduct<T: Real> {
    fn dot(&self, rhs: &Self) -> T;
}

This type can be used to produce a dot product

Required methods

fn dot(&self, rhs: &Self) -> T

Produce the dot product of self and rhs

Loading content...

Implementors

impl<T: Real> DotProduct<T> for TVec2<T>[src]

impl<T: Real> DotProduct<T> for TVec3<T>[src]

impl<T: Real> DotProduct<T> for TVec4<T>[src]

Loading content...