------------------------------------------------------------------------------
| 161 | |
| 162 | //------------------------------------------------------------------------------ |
| 163 | vtkMTimeType vtkImplicitSelectionLoop::GetMTime() |
| 164 | { |
| 165 | vtkMTimeType mTime = this->vtkImplicitFunction::GetMTime(); |
| 166 | vtkMTimeType time; |
| 167 | |
| 168 | if (this->Loop != nullptr) |
| 169 | { |
| 170 | time = this->Loop->GetMTime(); |
| 171 | mTime = (time > mTime ? time : mTime); |
| 172 | } |
| 173 | |
| 174 | return mTime; |
| 175 | } |
| 176 | |
| 177 | //------------------------------------------------------------------------------ |
| 178 | void vtkImplicitSelectionLoop::PrintSelf(ostream& os, vtkIndent indent) |