Trait na::NumVec [] [src]

pub trait NumVec<N>: Add<Self, Output = Self> + Sub<Self, Output = Self> + Mul<N, Output = Self> + Div<N, Output = Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<N> + DivAssign<N> + Identity<Additive> + PartialEq where
    Self: Sized
{ }

Trait grouping most common operations on vectors.

Implementors