------------------------------------------------------------------------------
| 81 | |
| 82 | //------------------------------------------------------------------------------ |
| 83 | void vtkCPExodusIIElementBlockCellIterator::SetStorage(vtkCPExodusIIElementBlock* eb) |
| 84 | { |
| 85 | if (eb != nullptr) |
| 86 | { |
| 87 | this->Storage = eb->GetInternals(); |
| 88 | this->DataSetPoints = eb->GetPoints(); |
| 89 | if (this->DataSetPoints) |
| 90 | { |
| 91 | this->Points->SetDataType(this->DataSetPoints->GetDataType()); |
| 92 | } |
| 93 | } |
| 94 | else |
| 95 | { |
| 96 | this->Storage = nullptr; |
| 97 | this->DataSetPoints = nullptr; |
| 98 | } |
| 99 | this->CellId = 0; |
| 100 | } |
| 101 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected