| 6187 | } |
| 6188 | |
| 6189 | void vtkExodusIIReader::SetPartArrayStatus(int index, int flag) |
| 6190 | { |
| 6191 | // Only modify if we are 'out of sync' |
| 6192 | if (this->Metadata->GetPartStatus(index) != flag) |
| 6193 | { |
| 6194 | this->Metadata->SetPartStatus(index, flag); |
| 6195 | |
| 6196 | // Because which parts are on/off affects the |
| 6197 | // geometry we need to remake the mesh cache |
| 6198 | // this->RemakeDataCacheFlag = 1; |
| 6199 | this->Modified(); |
| 6200 | } |
| 6201 | } |
| 6202 | |
| 6203 | void vtkExodusIIReader::SetPartArrayStatus(const char* name, int flag) |
| 6204 | { |
no test coverage detected