------------------------------------------------------------------------------
| 2264 | |
| 2265 | //------------------------------------------------------------------------------ |
| 2266 | vtkIdType vtkKdTree::FindClosestPointInRegion(int regionId, double* x, double& dist2) |
| 2267 | { |
| 2268 | return this->FindClosestPointInRegion(regionId, x[0], x[1], x[2], dist2); |
| 2269 | } |
| 2270 | |
| 2271 | //------------------------------------------------------------------------------ |
| 2272 | vtkIdType vtkKdTree::FindClosestPointInRegion( |
nothing calls this directly
no test coverage detected