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
Implementors
impl<P> IsSortable2D for PointCloud2D<P> where
P: Is2D,