------------------------------------------------------------------------------
| 3577 | |
| 3578 | //------------------------------------------------------------------------------ |
| 3579 | int vtkKdTree::findRegion(vtkKdNode* node, float x, float y, float z) |
| 3580 | { |
| 3581 | return vtkKdTree::findRegion( |
| 3582 | node, static_cast<double>(x), static_cast<double>(y), static_cast<double>(z)); |
| 3583 | } |
| 3584 | |
| 3585 | //------------------------------------------------------------------------------ |
| 3586 | int vtkKdTree::findRegion(vtkKdNode* node, double x, double y, double z) |
nothing calls this directly
no test coverage detected