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

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

Associated Types

type Output[src]

Loading content...

Required methods

fn join(self, v: U) -> Self::Output[src]

Loading content...

Implementors

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

type Output = Point4<T>

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

type Output = Point3<T>

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

type Output = Point4<T>

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

type Output = Point3<T>

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

type Output = Point4<T>

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

type Output = Point2<T>

Loading content...