Trait rust_3d::traits::IsTransFormableTo2D [] [src]

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

Should create representation of self within the 2D space

Implementors