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
Implementors
impl IsMovable3D for Point3Dimpl IsMovable3D for Line3Dimpl IsMovable3D for LineSegment3Dimpl IsMovable3D for Ray3Dimpl<P> IsMovable3D for PointCloud3D<P> where
P: Is3D + IsMovable3D,