Trait rust_3d::traits::IsSortable2D [] [src]

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

IsSortable2D trait used for collections which can be sorted by x or y

Required Methods

Should sort all elements by x

Should sort all elements by y

Implementors