[][src]Trait rust_3d::IsTransFormableTo2D

pub trait IsTransFormableTo2D: Is3D {
    fn transform_to_2d<P>(&self) -> P
    where
        P: IsBuildable2D
; }

IsTransFormableTo2D is a trait used for any type which can be transformed 2D space

Required methods

fn transform_to_2d<P>(&self) -> P where
    P: IsBuildable2D

Should create representation of self within the 2D space

Loading content...

Implementors

impl IsTransFormableTo2D for Point3D[src]

Loading content...