------------------------------------------------------------------------------
| 567 | |
| 568 | //------------------------------------------------------------------------------ |
| 569 | vtkIdType vtkIncrementalOctreePointLocator::FindClosestPoint(double x, double y, double z) |
| 570 | { |
| 571 | double dumbDist2; |
| 572 | double theCoords[3] = { x, y, z }; |
| 573 | return this->FindClosestPoint(theCoords, &dumbDist2); |
| 574 | } |
| 575 | |
| 576 | //------------------------------------------------------------------------------ |
| 577 | vtkIdType vtkIncrementalOctreePointLocator::FindClosestPoint(const double x[3]) |
nothing calls this directly
no test coverage detected