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

Method GetMTime

Common/DataModel/vtkPolyPlane.cxx:41–53  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

39
40//------------------------------------------------------------------------------
41vtkMTimeType vtkPolyPlane::GetMTime()
42{
43 vtkMTimeType mTime = this->Superclass::GetMTime();
44
45 if (this->PolyLine)
46 {
47 vtkMTimeType p1Time;
48 p1Time = this->PolyLine->GetMTime();
49 mTime = (p1Time > mTime ? p1Time : mTime);
50 }
51
52 return mTime;
53}
54
55//------------------------------------------------------------------------------
56// This function returns 1 if p3 is to the left the directed line from p1 to p2

Callers 1

ComputeNormalsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected