| 32 | static vtkCameraCallbackCommand* New() { return new vtkCameraCallbackCommand; } |
| 33 | vtkCamera* Self; |
| 34 | void Execute(vtkObject*, unsigned long, void*) override |
| 35 | { |
| 36 | if (this->Self) |
| 37 | { |
| 38 | this->Self->Modified(); |
| 39 | this->Self->ComputeViewTransform(); |
| 40 | this->Self->ComputeDistance(); |
| 41 | this->Self->ComputeCameraLightTransform(); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | protected: |
| 46 | vtkCameraCallbackCommand() { this->Self = nullptr; } |
nothing calls this directly
no test coverage detected