Trait na::traits::IntoPnt

source ·
pub trait IntoPnt<V> {
    // Required method
    fn into_pnt(self) -> V;
}

Required Methods§

source

fn into_pnt(self) -> V

Implementations on Foreign Types§

source§

impl<T: Scalar> IntoPnt<OPoint<T, Const<4>>> for [T; 4]

source§

fn into_pnt(self) -> Point4<T>

source§

impl<'a, T: Scalar> IntoPnt<OPoint<T, Const<4>>> for &'a [T]

source§

fn into_pnt(self) -> Point4<T>

source§

impl<T: Scalar> IntoPnt<OPoint<T, Const<3>>> for [T; 3]

source§

fn into_pnt(self) -> Point3<T>

source§

impl<'a, T: Scalar> IntoPnt<OPoint<T, Const<2>>> for &'a [T]

source§

fn into_pnt(self) -> Point2<T>

source§

impl<'a, T: Scalar> IntoPnt<OPoint<T, Const<3>>> for &'a [T]

source§

fn into_pnt(self) -> Point3<T>

source§

impl<T: Scalar> IntoPnt<OPoint<T, Const<2>>> for [T; 2]

source§

fn into_pnt(self) -> Point2<T>

Implementors§

source§

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

source§

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

source§

impl<T: Scalar> IntoPnt<OPoint<T, Const<4>>> for T

source§

impl<V> IntoPnt<V> for V