Trait rust_3d::traits::is_tree_3d::IsTree3D [] [src]

pub trait IsTree3D<P> where P: Is3D {
    fn new() -> Self;
    fn size(&self) -> usize;
    fn to_pointcloud(&self) -> PointCloud3D<P>;
    fn build(&mut self, pc: PointCloud3D<P>) -> bool;
}

Required Methods

Implementors