VTK  9.1.0
vtkTDxInteractorStyleCamera.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTDxInteractorStyleCamera.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
28#ifndef vtkTDxInteractorStyleCamera_h
29#define vtkTDxInteractorStyleCamera_h
30
31#include "vtkRenderingCoreModule.h" // For export macro
33
34class vtkTransform;
35
36class VTKRENDERINGCORE_EXPORT vtkTDxInteractorStyleCamera : public vtkTDxInteractorStyle
37{
38public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
47 void OnMotionEvent(vtkTDxMotionEventInfo* motionInfo) override;
48
49protected:
52
53 vtkTransform* Transform; // Used for internal intermediate calculation.
54
55private:
57 void operator=(const vtkTDxInteractorStyleCamera&) = delete;
58};
59#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
interactive manipulation of the camera with a 3DConnexion device
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkTDxInteractorStyleCamera() override
void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo) override
Action on motion event.
static vtkTDxInteractorStyleCamera * New()
provide 3DConnexion device event-driven interface to the rendering window
Store motion information from a 3DConnexion input device.
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:164