Trait rin::math::traits::JoinPnt[][src]

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

Associated Types

type Output[src]

Loading content...

Required methods

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

Loading content...

Implementors

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

type Output = Point<T, U4>

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

type Output = Point<T, U3>

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

type Output = Point<T, U4>

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

type Output = Point<T, U3>

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

type Output = Point<T, U4>

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

type Output = Point<T, U2>

Loading content...