MCPcopy Create free account
hub / github.com/Kitware/VTK / GetTensorsNameInFile

Method GetTensorsNameInFile

IO/Legacy/vtkDataReader.cxx:3641–3652  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

3639}
3640//------------------------------------------------------------------------------
3641const 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//------------------------------------------------------------------------------
3654const char* vtkDataReader::GetNormalsNameInFile(int i)
3655{

Callers 1

setAllAttributesFunction · 0.80

Calls 1

CharacterizeFileMethod · 0.95

Tested by

no test coverage detected