Trait na::NumPnt [] [src]

pub trait NumPnt<N>: Mul<N, Output = Self> + Div<N, Output = Self> + MulAssign<N> + DivAssign<N> + PartialEq where
    Self: Sized
{ }

Trait grouping most common operations on vectors.

Implementations on Foreign Types

impl<N: BaseNum> NumPnt<N> for Point1<N>
[src]

impl<N: BaseNum> NumPnt<N> for Point2<N>
[src]

impl<N: BaseNum> NumPnt<N> for Point3<N>
[src]

impl<N: BaseNum> NumPnt<N> for Point4<N>
[src]

impl<N: BaseNum> NumPnt<N> for Point5<N>
[src]

impl<N: BaseNum> NumPnt<N> for Point6<N>
[src]

Implementors