------------------------------------------------------------------------------
| 3879 | |
| 3880 | //------------------------------------------------------------------------------ |
| 3881 | vtkIdType vtkKdTree::GetCellLists( |
| 3882 | vtkIntArray* regions, int setIndex, vtkIdList* inRegionCells, vtkIdList* onBoundaryCells) |
| 3883 | { |
| 3884 | vtkDataSet* set = this->GetDataSet(setIndex); |
| 3885 | if (!set) |
| 3886 | { |
| 3887 | vtkErrorMacro(<< "vtkKdTree::GetCellLists no such data set"); |
| 3888 | return 0; |
| 3889 | } |
| 3890 | return this->GetCellLists(regions, set, inRegionCells, onBoundaryCells); |
| 3891 | } |
| 3892 | |
| 3893 | //------------------------------------------------------------------------------ |
| 3894 | vtkIdType vtkKdTree::GetCellLists( |
no test coverage detected