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

Method GetMTime

Common/DataModel/vtkGraph.cxx:201–213  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

199
200//------------------------------------------------------------------------------
201vtkMTimeType vtkGraph::GetMTime()
202{
203 vtkMTimeType doTime = vtkDataObject::GetMTime();
204
205 doTime = std::max(this->VertexData->GetMTime(), doTime);
206 doTime = std::max(this->EdgeData->GetMTime(), doTime);
207 if (this->Points)
208 {
209 doTime = std::max(this->Points->GetMTime(), doTime);
210 }
211
212 return doTime;
213}
214
215//------------------------------------------------------------------------------
216void vtkGraph::Initialize()

Callers 15

ComputeBoundsMethod · 0.95
SetXCoordinatesMethod · 0.45
SetYCoordinatesMethod · 0.45
SetZCoordinatesMethod · 0.45
InitializeMethod · 0.45
GetMeshMTimeMethod · 0.45
BuildLinksMethod · 0.45
MTimeWatcherFunction · 0.45
operator()Function · 0.45
ResetFunction · 0.45

Calls 2

GetMTimeFunction · 0.85
maxFunction · 0.50

Tested by 3

TestSetDataImplFunction · 0.36
TestConfigFunction · 0.36
TestConfigFunction · 0.36