------------------------------------------------------------------------------
| 334 | |
| 335 | //------------------------------------------------------------------------------ |
| 336 | void vtkUnstructuredGrid::Initialize() |
| 337 | { |
| 338 | vtkPointSet::Initialize(); |
| 339 | |
| 340 | this->Cleanup(); |
| 341 | |
| 342 | if (this->Information) |
| 343 | { |
| 344 | this->Information->Set(vtkDataObject::DATA_PIECE_NUMBER(), -1); |
| 345 | this->Information->Set(vtkDataObject::DATA_NUMBER_OF_PIECES(), 0); |
| 346 | this->Information->Set(vtkDataObject::DATA_NUMBER_OF_GHOST_LEVELS(), 0); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | //------------------------------------------------------------------------------ |
| 351 | int vtkUnstructuredGrid::GetCellType(vtkIdType cellId) |
no test coverage detected