------------------------------------------------------------------------
| 901 | |
| 902 | //------------------------------------------------------------------------ |
| 903 | void vtkOpenVDBReader::InitializeData() |
| 904 | { |
| 905 | // load the file |
| 906 | if (!this->LoadFile()) |
| 907 | { |
| 908 | this->DataCorrect = false; |
| 909 | return; |
| 910 | } |
| 911 | |
| 912 | // if everything went well, extract the grids information |
| 913 | this->Internals->ConstructGridsInformation(); |
| 914 | } |
| 915 | |
| 916 | //------------------------------------------------------------------------ |
| 917 | int vtkOpenVDBReader::RequestInformation(vtkInformation* vtkNotUsed(request), |
no test coverage detected