------------------------------------------------------------------------------
| 47 | |
| 48 | //------------------------------------------------------------------------------ |
| 49 | vtkInteractorObserver::~vtkInteractorObserver() |
| 50 | { |
| 51 | this->UnRegisterPickers(); |
| 52 | |
| 53 | this->SetEnabled(0); |
| 54 | this->SetCurrentRenderer(nullptr); |
| 55 | this->SetDefaultRenderer(nullptr); |
| 56 | this->EventCallbackCommand->Delete(); |
| 57 | this->KeyPressCallbackCommand->Delete(); |
| 58 | this->SetInteractor(nullptr); |
| 59 | } |
| 60 | |
| 61 | //------------------------------------------------------------------------------ |
| 62 | void vtkInteractorObserver::SetCurrentRenderer(vtkRenderer* _arg) |
nothing calls this directly
no test coverage detected