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

Method GetMTime

Filters/Modeling/vtkSelectPolyData.cxx:891–903  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

889
890//------------------------------------------------------------------------------
891vtkMTimeType vtkSelectPolyData::GetMTime()
892{
893 vtkMTimeType mTime = this->Superclass::GetMTime();
894 vtkMTimeType time;
895
896 if (this->Loop != nullptr)
897 {
898 time = this->Loop->GetMTime();
899 mTime = (time > mTime ? time : mTime);
900 }
901
902 return mTime;
903}
904
905//------------------------------------------------------------------------------
906void vtkSelectPolyData::PrintSelf(ostream& os, vtkIndent indent)

Callers 2

RequestDataMethod · 0.45
RequestDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected