Trait nalgebra::NumPoint
[−]
[src]
pub trait NumPoint<N>: Copy + PointAsVector + Dimension + Origin + PartialEq + Axpy<N> + Sub<Self, Output=Self::Vector> + Mul<N, Output=Self> + Div<N, Output=Self> + Add<Self::Vector, Output=Self> + MulAssign<N> + DivAssign<N> + AddAssign<Self::Vector> + Index<usize, Output=N> { }
Trait grouping most common operations on points.
Implementors
impl<N> NumPoint<N> for Point1<N> where N: BaseNum
impl<N> NumPoint<N> for Point2<N> where N: BaseNum
impl<N> NumPoint<N> for Point3<N> where N: BaseNum
impl<N> NumPoint<N> for Point4<N> where N: BaseNum
impl<N> NumPoint<N> for Point5<N> where N: BaseNum
impl<N> NumPoint<N> for Point6<N> where N: BaseNum