------------------------------------------------------------------------------
| 3640 | |
| 3641 | //------------------------------------------------------------------------------ |
| 3642 | void vtkExodusIIReaderPrivate::SetAssemblyStatus(int idx, int on) |
| 3643 | { |
| 3644 | std::vector<int> blkIndices = this->AssemblyInfo[idx].BlockIndices; |
| 3645 | |
| 3646 | // update the block status for all the blocks in this material |
| 3647 | for (unsigned int i = 0; i < blkIndices.size(); i++) |
| 3648 | { |
| 3649 | this->SetUnsortedObjectStatus(vtkExodusIIReader::ELEM_BLOCK, blkIndices[i], on); |
| 3650 | } |
| 3651 | } |
| 3652 | |
| 3653 | //------------------------------------------------------------------------------ |
| 3654 | void vtkExodusIIReaderPrivate::SetAssemblyStatus(const vtkStdString& name, int flag) |
no test coverage detected