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

Method GetMTime

Common/DataModel/vtkImplicitSelectionLoop.cxx:163–175  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

161
162//------------------------------------------------------------------------------
163vtkMTimeType vtkImplicitSelectionLoop::GetMTime()
164{
165 vtkMTimeType mTime = this->vtkImplicitFunction::GetMTime();
166 vtkMTimeType time;
167
168 if (this->Loop != nullptr)
169 {
170 time = this->Loop->GetMTime();
171 mTime = (time > mTime ? time : mTime);
172 }
173
174 return mTime;
175}
176
177//------------------------------------------------------------------------------
178void vtkImplicitSelectionLoop::PrintSelf(ostream& os, vtkIndent indent)

Callers 1

EvaluateFunctionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected