------------------------------------------------------------------------------
| 674 | |
| 675 | //------------------------------------------------------------------------------ |
| 676 | void vtkOctreePointLocator::FindPointsWithinRadius( |
| 677 | double radius, const double x[3], vtkIdList* result) |
| 678 | { |
| 679 | result->Reset(); |
| 680 | this->BuildLocator(); |
| 681 | // don't forget to square the radius |
| 682 | this->FindPointsWithinRadius(this->Top, radius * radius, x, result); |
| 683 | } |
| 684 | |
| 685 | //------------------------------------------------------------------------------ |
| 686 | void vtkOctreePointLocator::FindPointsWithinRadius( |
nothing calls this directly
no test coverage detected