[][src]Trait rust_3d::IsSortable2D

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

fn sort_x(&mut self)

Should sort all elements by x

fn sort_y(&mut self)

Should sort all elements by y

Loading content...

Implementors

impl<P> IsSortable2D for PointCloud2D<P> where
    P: Is2D
[src]

Loading content...