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
fn new() -> Self
fn size(&self) -> usize
fn to_pointcloud(&self) -> PointCloud3D<P>
fn build(&mut self, pc: PointCloud3D<P>) -> bool
Implementors
impl<P> IsTree3D<P> for KdTree<P> where P: IsBuildable3D + Clone
impl<P> IsTree3D<P> for OcTree<P> where P: IsEditable3D + IsBuildable3D + Clone