pub trait IsSortable3D: IsSortableND {
// Required methods
fn sort_x(&mut self);
fn sort_y(&mut self);
fn sort_z(&mut self);
}
Expand description
IsSortable3D trait used for collections which can be sorted by x,y or z
pub trait IsSortable3D: IsSortableND {
// Required methods
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