1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
* @class vtkInteractorStyleTrackball
* @brief provides trackball motion control
*
*
* vtkInteractorStyleTrackball is an implementation of vtkInteractorStyle
* that defines the trackball style. It is now deprecated and as such a
* subclass of vtkInteractorStyleSwitch
*
* @sa
* vtkInteractorStyleSwitch vtkInteractorStyleTrackballActor vtkInteractorStyleJoystickCamera
*/
#ifndef vtkInteractorStyleTrackball_h
#define vtkInteractorStyleTrackball_h
#include "vtkInteractionStyleModule.h" // For export macro
#include "vtkInteractorStyleSwitch.h"
#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
VTK_ABI_NAMESPACE_BEGIN
class VTKINTERACTIONSTYLE_EXPORT VTK_MARSHALAUTO vtkInteractorStyleTrackball
: public vtkInteractorStyleSwitch
{
public:
static vtkInteractorStyleTrackball* New();
vtkTypeMacro(vtkInteractorStyleTrackball, vtkInteractorStyleSwitch);
void PrintSelf(ostream& os, vtkIndent indent) override;
protected:
vtkInteractorStyleTrackball();
~vtkInteractorStyleTrackball() override;
private:
vtkInteractorStyleTrackball(const vtkInteractorStyleTrackball&) = delete;
void operator=(const vtkInteractorStyleTrackball&) = delete;
};
VTK_ABI_NAMESPACE_END
#endif
|