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

Method GetNormalsNameInFile

IO/Legacy/vtkDataReader.cxx:3654–3665  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

3652}
3653//------------------------------------------------------------------------------
3654const 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//------------------------------------------------------------------------------
3667const char* vtkDataReader::GetTCoordsNameInFile(int i)
3668{

Callers

nothing calls this directly

Calls 1

CharacterizeFileMethod · 0.95

Tested by

no test coverage detected