Trait rust_3d::traits::IsTransFormableTo3D [] [src]

pub trait IsTransFormableTo3D: Is2D {
    fn transform_to_3d<P>(&self, z: f64) -> P
    where
        P: IsBuildable3D
; }

IsTransFormableTo3D is a trait used for any type which can be transformed 3D space

Required Methods

Should create representation of self within the 3D space with a given z-coordinate

Implementors