------------------------------------------------------------------------------
| 932 | |
| 933 | //------------------------------------------------------------------------------ |
| 934 | void vtkUnstructuredGrid::SetPolyhedralCells( |
| 935 | vtkDataArray* cellTypes, vtkCellArray* cells, vtkCellArray* faceLocations, vtkCellArray* faces) |
| 936 | { |
| 937 | this->Connectivity = cells; |
| 938 | this->Types = cellTypes; |
| 939 | this->DistinctCellTypes = nullptr; |
| 940 | this->DistinctCellTypesUpdateMTime = 0; |
| 941 | this->Faces = faces; |
| 942 | this->FaceLocations = faceLocations; |
| 943 | } |
| 944 | |
| 945 | //------------------------------------------------------------------------------ |
| 946 | void vtkUnstructuredGrid::BuildLinks() |
no outgoing calls