------------------------------------------------------------------------------
| 82 | |
| 83 | //------------------------------------------------------------------------------ |
| 84 | void vtkContextInteractorStyle::ProcessSceneEvents( |
| 85 | vtkObject*, unsigned long event, void* clientdata, void* vtkNotUsed(calldata)) |
| 86 | { |
| 87 | vtkContextInteractorStyle* self = reinterpret_cast<vtkContextInteractorStyle*>(clientdata); |
| 88 | switch (event) |
| 89 | { |
| 90 | case vtkCommand::ModifiedEvent: |
| 91 | self->OnSceneModified(); |
| 92 | break; |
| 93 | default: |
| 94 | break; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | void vtkContextInteractorStyle::ProcessInteractorEvents( |
nothing calls this directly
no test coverage detected