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

Method GetTCoordsNameInFile

IO/Legacy/vtkDataReader.cxx:3667–3678  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

3665}
3666//------------------------------------------------------------------------------
3667const char* vtkDataReader::GetTCoordsNameInFile(int i)
3668{
3669 this->CharacterizeFile();
3670 if (!this->TCoordsNameInFile || i < 0 || i >= this->NumberOfTCoordsInFile)
3671 {
3672 return nullptr;
3673 }
3674 else
3675 {
3676 return this->TCoordsNameInFile[i];
3677 }
3678}
3679//------------------------------------------------------------------------------
3680const char* vtkDataReader::GetFieldDataNameInFile(int i)
3681{

Callers

nothing calls this directly

Calls 1

CharacterizeFileMethod · 0.95

Tested by

no test coverage detected