------------------------------------------------------------------------------
| 74 | |
| 75 | //------------------------------------------------------------------------------ |
| 76 | void vtkExplicitStructuredGrid::Initialize() |
| 77 | { |
| 78 | this->Superclass::Initialize(); |
| 79 | |
| 80 | if (this->Information) |
| 81 | { |
| 82 | this->SetDimensions(0, 0, 0); |
| 83 | } |
| 84 | |
| 85 | this->SetCells(nullptr); |
| 86 | if (this->Links) |
| 87 | { |
| 88 | this->Links->Initialize(); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | //------------------------------------------------------------------------------ |
| 93 | int vtkExplicitStructuredGrid::GetCellType(vtkIdType cellId) |
no test coverage detected