------------------------------------------------------------------------------
| 51 | |
| 52 | //------------------------------------------------------------------------------ |
| 53 | void vtkKdTreePointLocator::FindPointsWithinRadius(double R, const double x[3], vtkIdList* result) |
| 54 | { |
| 55 | this->BuildLocator(); |
| 56 | this->KdTree->FindPointsWithinRadius(R, x, result); |
| 57 | } |
| 58 | |
| 59 | //------------------------------------------------------------------------------ |
| 60 | void vtkKdTreePointLocator::FreeSearchStructure() |
nothing calls this directly
no test coverage detected