------------------------------------------------------------------------------
| 236 | |
| 237 | //------------------------------------------------------------------------------ |
| 238 | void vtkAMRFlashReader::GetAMRGridData(int blockIdx, vtkUniformGrid* block, const char* field) |
| 239 | { |
| 240 | assert("pre: AMR block is nullptr" && (block != nullptr)); |
| 241 | this->Internal->GetBlockAttribute(field, blockIdx, block); |
| 242 | } |
| 243 | |
| 244 | //------------------------------------------------------------------------------ |
| 245 | void vtkAMRFlashReader::SetUpDataArraySelections() |
nothing calls this directly
no test coverage detected