------------------------------------------------------------------
| 18 | |
| 19 | //------------------------------------------------------------------ |
| 20 | void vtkGenericRenderWindowInteractor::TimerEvent() |
| 21 | { |
| 22 | if (!this->Enabled) |
| 23 | { |
| 24 | return; |
| 25 | } |
| 26 | |
| 27 | int timerId = this->GetCurrentTimerId(); |
| 28 | this->InvokeEvent(vtkCommand::TimerEvent, &timerId); |
| 29 | |
| 30 | if (!this->IsOneShotTimer(timerId) && this->GetTimerEventResetsTimer()) |
| 31 | { |
| 32 | this->ResetTimer(timerId); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | //------------------------------------------------------------------ |
| 37 | int vtkGenericRenderWindowInteractor::InternalCreateTimer( |
nothing calls this directly
no test coverage detected