------------------------------------------------------------------------------
| 547 | |
| 548 | //------------------------------------------------------------------------------ |
| 549 | vtkIdType vtkOctreePointLocator::FindClosestPointWithinRadius( |
| 550 | double radius, const double x[3], double& dist2) |
| 551 | { |
| 552 | return this->FindClosestPointInSphere(x[0], x[1], x[2], radius, -2, dist2); |
| 553 | } |
| 554 | |
| 555 | //------------------------------------------------------------------------------ |
| 556 | vtkIdType vtkOctreePointLocator::FindClosestPointInRegion(int regionId, double* x, double& dist2) |
nothing calls this directly
no test coverage detected