------------------------------------------------------------------------------
| 999 | |
| 1000 | //------------------------------------------------------------------------------ |
| 1001 | void vtkUnstructuredGrid::GetDistinctCellTypes(vtkCellTypes* types) |
| 1002 | { |
| 1003 | this->GetDistinctCellTypesArray(); |
| 1004 | types->DeepCopy(this->DistinctCellTypes); |
| 1005 | } |
| 1006 | |
| 1007 | //------------------------------------------------------------------------------ |
| 1008 | vtkUnsignedCharArray* vtkUnstructuredGrid::GetDistinctCellTypesArray() |
nothing calls this directly
no test coverage detected