| 6241 | } |
| 6242 | |
| 6243 | void vtkExodusIIReader::SetMaterialArrayStatus(int index, int flag) |
| 6244 | { |
| 6245 | // Only modify if we are 'out of sync' |
| 6246 | if (this->Metadata->GetMaterialStatus(index) != flag) |
| 6247 | { |
| 6248 | this->Metadata->SetMaterialStatus(index, flag); |
| 6249 | |
| 6250 | // Because which materials are on/off affects the |
| 6251 | // geometry we need to remake the mesh cache |
| 6252 | // this->RemakeDataCacheFlag = 1; |
| 6253 | this->Modified(); |
| 6254 | } |
| 6255 | } |
| 6256 | |
| 6257 | void vtkExodusIIReader::SetMaterialArrayStatus(const char* matl, int flag) |
| 6258 | { |
no test coverage detected