| 6302 | } |
| 6303 | |
| 6304 | void vtkExodusIIReader::SetAssemblyArrayStatus(int index, int flag) |
| 6305 | { |
| 6306 | // Only modify if we are 'out of sync' |
| 6307 | if (this->Metadata->GetAssemblyStatus(index) != flag) |
| 6308 | { |
| 6309 | this->Metadata->SetAssemblyStatus(index, flag); |
| 6310 | |
| 6311 | // Because which materials are on/off affects the |
| 6312 | // geometry we need to remake the mesh cache |
| 6313 | // this->RemakeDataCacheFlag = 1; |
| 6314 | this->Modified(); |
| 6315 | } |
| 6316 | } |
| 6317 | |
| 6318 | void vtkExodusIIReader::SetAssemblyArrayStatus(const char* name, int flag) |
| 6319 | { |
no test coverage detected