------------------------------------------------------------------------------
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | void vtkContextInteractorStyle::RenderNow() |
| 115 | { |
| 116 | if (this->SceneTimerId > 0) |
| 117 | { |
| 118 | this->Interactor->DestroyTimer(this->SceneTimerId); |
| 119 | this->SceneTimerId = 0; |
| 120 | } |
| 121 | if (this->Scene && !this->ProcessingEvents && this->Interactor->GetInitialized()) |
| 122 | { |
| 123 | this->Interactor->Render(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | //------------------------------------------------------------------------------ |
| 128 | void vtkContextInteractorStyle::OnSceneModified() |
no test coverage detected