Trait rust_3d::traits::IsEditableND [] [src]

pub trait IsEditableND: IsND {
    fn set_position(&mut self, dimension: usize, val: f64) -> Result<()>;
}

IsEditableND is a trait used for types which are positioned in n-dimensional space and their position can be changed

Required Methods

Should set the coordinate / position at dimension to val

Implementors