------------------------------------------------------------------------------
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | static void LastInputDeletedCallback(vtkObject* vtkNotUsed(caller), unsigned long vtkNotUsed(eid), |
| 94 | void* _self, void* vtkNotUsed(calldata)) |
| 95 | { |
| 96 | vtkKdTree* self = reinterpret_cast<vtkKdTree*>(_self); |
| 97 | |
| 98 | self->InvalidateGeometry(); |
| 99 | } |
| 100 | |
| 101 | // helper class for ordering the points in vtkKdTree::FindClosestNPoints() |
| 102 | namespace |
nothing calls this directly
no test coverage detected