------------------------------------------------------------------------------
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | vtkIdType vtkKdTreePointLocator::FindClosestPointWithinRadius( |
| 39 | double radius, const double x[3], double& dist2) |
| 40 | { |
| 41 | this->BuildLocator(); |
| 42 | return this->KdTree->FindClosestPointWithinRadius(radius, x, dist2); |
| 43 | } |
| 44 | |
| 45 | //------------------------------------------------------------------------------ |
| 46 | void vtkKdTreePointLocator::FindClosestNPoints(int N, const double x[3], vtkIdList* result) |
nothing calls this directly
no test coverage detected