Trait rust_3d::traits::IsSortable3D [] [src]

pub trait IsSortable3D: IsSortableND {
    fn sort_x(&mut self);
fn sort_y(&mut self);
fn sort_z(&mut self); }

IsSortable3D trait used for collections which can be sorted by x,y or z

Required Methods

Should sort all elements by x

Should sort all elements by y

Should sort all elements by z

Implementors