------------------------------------------------------------------------------
| 3639 | } |
| 3640 | //------------------------------------------------------------------------------ |
| 3641 | const char* vtkDataReader::GetTensorsNameInFile(int i) |
| 3642 | { |
| 3643 | this->CharacterizeFile(); |
| 3644 | if (!this->TensorsNameInFile || i < 0 || i >= this->NumberOfTensorsInFile) |
| 3645 | { |
| 3646 | return nullptr; |
| 3647 | } |
| 3648 | else |
| 3649 | { |
| 3650 | return this->TensorsNameInFile[i]; |
| 3651 | } |
| 3652 | } |
| 3653 | //------------------------------------------------------------------------------ |
| 3654 | const char* vtkDataReader::GetNormalsNameInFile(int i) |
| 3655 | { |
no test coverage detected