[][src]Trait rust_3d::IsTransFormableTo3D

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

fn transform_to_3d<P>(&self, z: f64) -> P where
    P: IsBuildable3D

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

Loading content...

Implementors

impl IsTransFormableTo3D for Point2D[src]

Loading content...