------------------------------------------------------------------------------
| 3652 | } |
| 3653 | //------------------------------------------------------------------------------ |
| 3654 | const char* vtkDataReader::GetNormalsNameInFile(int i) |
| 3655 | { |
| 3656 | this->CharacterizeFile(); |
| 3657 | if (!this->NormalsNameInFile || i < 0 || i >= this->NumberOfNormalsInFile) |
| 3658 | { |
| 3659 | return nullptr; |
| 3660 | } |
| 3661 | else |
| 3662 | { |
| 3663 | return this->NormalsNameInFile[i]; |
| 3664 | } |
| 3665 | } |
| 3666 | //------------------------------------------------------------------------------ |
| 3667 | const char* vtkDataReader::GetTCoordsNameInFile(int i) |
| 3668 | { |
nothing calls this directly
no test coverage detected