pub struct vtkClosestNPointsStrategy(/* private fields */);Expand description
implement a specific vtkPointSet::FindCell() strategy based
on the N closest points
vtkClosestNPointsStrategy is implements a FindCell() strategy based on locating the closest N points in a dataset, and then searching attached cells. This class extends its superclass vtkClosestPointStrategy by looking at the additional N points.
@sa vtkFindCellStrategy vtkPointSet
Implementations§
Source§impl vtkClosestNPointsStrategy
impl vtkClosestNPointsStrategy
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkClosestNPointsStrategy wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkClosestNPointsStrategy
impl Default for vtkClosestNPointsStrategy
Auto Trait Implementations§
impl Freeze for vtkClosestNPointsStrategy
impl RefUnwindSafe for vtkClosestNPointsStrategy
impl !Send for vtkClosestNPointsStrategy
impl !Sync for vtkClosestNPointsStrategy
impl Unpin for vtkClosestNPointsStrategy
impl UnwindSafe for vtkClosestNPointsStrategy
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