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

Method GetMTime

Common/Core/Testing/Python/TestSubClass.py:54–59  ·  view source on GitHub ↗

Override a method (only works when called from Python)

(self)

Source from the content-addressed store, hash-verified

52 raise TypeError("requires None or a vtkobject")
53
54 def GetMTime(self):
55 """Override a method (only works when called from Python)"""
56 t = vtkObject.GetMTime(self)
57 if self._ExtraObject:
58 t = max(t, self._ExtraObject.GetMTime())
59 return t
60
61class vtkPointsCustom(vtkPoints):
62 def __init__(self):

Callers 4

MyFunctionFunction · 0.45
TestGeneralFunction · 0.45

Calls 1

maxFunction · 0.50

Tested by

no test coverage detected