[][src]Trait na::traits::JoinPnt

pub trait JoinPnt<T: BaseNum, U> {
    type Output: NumPnt<T>;
    fn join(self, _: U) -> Self::Output;
}

Associated Types

type Output: NumPnt<T>

Loading content...

Required methods

fn join(self, _: U) -> Self::Output

Loading content...

Implementors

impl<T: BaseNum> JoinPnt<T, Point<T, U2>> for T[src]

type Output = Point3<T>

impl<T: BaseNum> JoinPnt<T, Point<T, U2>> for Point2<T>[src]

type Output = Point4<T>

impl<T: BaseNum> JoinPnt<T, Point<T, U3>> for T[src]

type Output = Point4<T>

impl<T: BaseNum> JoinPnt<T, T> for Point2<T>[src]

type Output = Point3<T>

impl<T: BaseNum> JoinPnt<T, T> for Point3<T>[src]

type Output = Point4<T>

impl<T: BaseNum> JoinPnt<T, T> for T[src]

type Output = Point2<T>

Loading content...