Trait na::traits::JoinPnt

source ·
pub trait JoinPnt<T, U> {
    type Output;

    // Required method
    fn join(self, v: U) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

impl<T: Scalar> JoinPnt<T, OPoint<T, Const<2>>> for Point2<T>

§

type Output = OPoint<T, Const<4>>

source§

impl<T: Scalar> JoinPnt<T, OPoint<T, Const<2>>> for T

§

type Output = OPoint<T, Const<3>>

source§

impl<T: Scalar> JoinPnt<T, OPoint<T, Const<3>>> for T

§

type Output = OPoint<T, Const<4>>

source§

impl<T: Scalar> JoinPnt<T, T> for Point2<T>

§

type Output = OPoint<T, Const<3>>

source§

impl<T: Scalar> JoinPnt<T, T> for Point3<T>

§

type Output = OPoint<T, Const<4>>

source§

impl<T: Scalar> JoinPnt<T, T> for T

§

type Output = OPoint<T, Const<2>>