Trait rust_3d::traits::IsMovable3D [] [src]

pub trait IsMovable3D {
    fn move_by(&mut self, x: f64, y: f64, z: f64);
}

IsMovable3D is a trait used for types within 3D space which can be moved

Required Methods

Should move the object by the given offset

Implementors