Override a method (only works when called from Python)
(self)
| 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 | |
| 61 | class vtkPointsCustom(vtkPoints): |
| 62 | def __init__(self): |
no test coverage detected