----------------------------------------------------------------------------
| 191 | |
| 192 | //---------------------------------------------------------------------------- |
| 193 | void vtkIOSSReader::SetMergeExodusEntityBlocks(bool val) |
| 194 | { |
| 195 | if (this->MergeExodusEntityBlocks != val) |
| 196 | { |
| 197 | // clear cache to ensure we read appropriate points/point data. |
| 198 | this->Internals->ClearCache(); |
| 199 | this->MergeExodusEntityBlocks = val; |
| 200 | this->Modified(); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | //---------------------------------------------------------------------------- |
| 205 | void vtkIOSSReader::SetElementAndSideIds(bool val) |
nothing calls this directly
no test coverage detected