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

Method GetNumberOfSteps

IO/HDF/vtkHDFReaderImplementation.cxx:170–178  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

168
169//------------------------------------------------------------------------------
170std::size_t vtkHDFReader::Implementation::GetNumberOfSteps()
171{
172 if (this->File < 0)
173 {
174 vtkErrorWithObjectMacro(this->Reader, "Cannot get number of steps if the file is not open");
175 return 0;
176 }
177 return vtkHDFUtilities::GetNumberOfSteps(this->VTKGroup);
178}
179
180//------------------------------------------------------------------------------
181int vtkHDFReader::Implementation::GetNumberOfPieces(vtkIdType step)

Calls 1

GetNumberOfStepsFunction · 0.85