[][src]Trait rust_3d::IsSortable3D

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

fn sort_x(&mut self)

Should sort all elements by x

fn sort_y(&mut self)

Should sort all elements by y

fn sort_z(&mut self)

Should sort all elements by z

Loading content...

Implementors

impl<P> IsSortable3D for PointCloud3D<P> where
    P: Is3D
[src]

Loading content...