------------------------------------------------------------------------------
| 251 | |
| 252 | //------------------------------------------------------------------------------ |
| 253 | vtkIdType vtkPointLocator::FindClosestPointWithinRadius( |
| 254 | double radius, const double x[3], double& dist2) |
| 255 | { |
| 256 | return this->FindClosestPointWithinRadius(radius, x, this->DataSet->GetLength(), dist2); |
| 257 | } |
| 258 | |
| 259 | //------------------------------------------------------------------------------ |
| 260 | vtkIdType vtkPointLocator::FindClosestPointWithinRadius( |
nothing calls this directly
no test coverage detected