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

Method GetMTime

Common/Transforms/vtkGeneralTransform.cxx:282–294  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

280
281//------------------------------------------------------------------------------
282vtkMTimeType vtkGeneralTransform::GetMTime()
283{
284 vtkMTimeType mtime = this->vtkAbstractTransform::GetMTime();
285 vtkMTimeType mtime2;
286
287 if (this->Input)
288 {
289 mtime2 = this->Input->GetMTime();
290 mtime = std::max(mtime2, mtime);
291 }
292 mtime2 = this->Concatenation->GetMaxMTime();
293 return std::max(mtime2, mtime);
294}
295VTK_ABI_NAMESPACE_END

Callers

nothing calls this directly

Calls 2

GetMaxMTimeMethod · 0.80
maxFunction · 0.50

Tested by

no test coverage detected