Trait JoinPnt
rin::math::traits
pub trait JoinPnt<T, U> { type Output; pub fn join(self, v: U) -> Self::Output; }
type Output
pub fn join(self, v: U) -> Self::Output
impl<T> JoinPnt<T, Point<T, U2>> for Point<T, U2> where T: Scalar,
type Output = Point<T, U4>
pub fn join(self, v: Point<T, U2>) -> Point<T, U4>
impl<T> JoinPnt<T, Point<T, U2>> for T where T: Scalar,
type Output = Point<T, U3>
pub fn join(self, v: Point<T, U2>) -> Point<T, U3>
impl<T> JoinPnt<T, Point<T, U3>> for T where T: Scalar,
pub fn join(self, v: Point<T, U3>) -> Point<T, U4>
impl<T> JoinPnt<T, T> for Point<T, U2> where T: Scalar,
pub fn join(self, v: T) -> Point<T, U3>
impl<T> JoinPnt<T, T> for Point<T, U3> where T: Scalar,
pub fn join(self, v: T) -> Point<T, U4>
impl<T> JoinPnt<T, T> for T where T: Scalar,
type Output = Point<T, U2>
pub fn join(self, v: T) -> Point<T, U2>