pub struct vtkOctreePointLocator(/* private fields */);Expand description
an octree spatial decomposition of a set of points
Given a vtkDataSet, create an octree that is locally refined such that all leaf octants contain less than a certain amount of points. Note that there is no size constraint that a leaf octant in relation to any of its neighbors.
This class can also generate a PolyData representation of the boundaries of the spatial regions in the decomposition.
@sa vtkLocator vtkPointLocator vtkOctreePointLocatorNode
Implementations§
Source§impl vtkOctreePointLocator
impl vtkOctreePointLocator
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkOctreePointLocator wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkOctreePointLocator
impl Default for vtkOctreePointLocator
Auto Trait Implementations§
impl Freeze for vtkOctreePointLocator
impl RefUnwindSafe for vtkOctreePointLocator
impl !Send for vtkOctreePointLocator
impl !Sync for vtkOctreePointLocator
impl Unpin for vtkOctreePointLocator
impl UnwindSafe for vtkOctreePointLocator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more