------------------------------------------------------------------------------
| 2388 | |
| 2389 | //------------------------------------------------------------------------------ |
| 2390 | void vtkKdTree::FindPointsWithinRadius(double R, const double x[3], vtkIdList* result) |
| 2391 | { |
| 2392 | result->Reset(); |
| 2393 | // don't forget to square the radius |
| 2394 | this->FindPointsWithinRadius(this->Top, R * R, x, result); |
| 2395 | } |
| 2396 | |
| 2397 | //------------------------------------------------------------------------------ |
| 2398 | void vtkKdTree::FindPointsWithinRadius( |