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

Method GetMTime

Rendering/Core/vtkActor.cxx:465–489  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

463
464//------------------------------------------------------------------------------
465vtkMTimeType vtkActor::GetMTime()
466{
467 vtkMTimeType mTime = this->Superclass::GetMTime();
468 vtkMTimeType time;
469
470 if (this->Property != nullptr)
471 {
472 time = this->Property->GetMTime();
473 mTime = (time > mTime ? time : mTime);
474 }
475
476 if (this->BackfaceProperty != nullptr)
477 {
478 time = this->BackfaceProperty->GetMTime();
479 mTime = (time > mTime ? time : mTime);
480 }
481
482 if (this->Texture != nullptr)
483 {
484 time = this->Texture->GetMTime();
485 mTime = (time > mTime ? time : mTime);
486 }
487
488 return mTime;
489}
490
491//------------------------------------------------------------------------------
492vtkMTimeType vtkActor::GetRedrawMTime()

Callers 15

GetBoundsMethod · 0.95
GetRedrawMTimeMethod · 0.95
RenderMethod · 0.45
RenderMethod · 0.45
IsUpToDateMethod · 0.45
PrepareHelperMethod · 0.45
RenderOpaqueGeometryMethod · 0.45
IsTranslucentMethod · 0.45
PrintSelfMethod · 0.45
CheckRebuildMethod · 0.45
UpdateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected