VTK
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 =========================================================================*/
34 #ifndef vtkTDxInteractorStyleCamera_h
35 #define vtkTDxInteractorStyleCamera_h
36 
37 #include "vtkRenderingCoreModule.h" // For export macro
38 #include "vtkTDxInteractorStyle.h"
39 
40 class vtkTransform;
41 
42 class VTKRENDERINGCORE_EXPORT vtkTDxInteractorStyleCamera : public vtkTDxInteractorStyle
43 {
44 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
53  virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
54 
55 protected:
57  virtual ~vtkTDxInteractorStyleCamera();
58 
59  vtkTransform *Transform; // Used for internal intermediate calculation.
60 
61 private:
62  vtkTDxInteractorStyleCamera(const vtkTDxInteractorStyleCamera&) VTK_DELETE_FUNCTION;
63  void operator=(const vtkTDxInteractorStyleCamera&) VTK_DELETE_FUNCTION;
64 };
65 #endif
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:60
interactive manipulation of the camera with a 3DConnexion device
a simple class to control print indentation
Definition: vtkIndent.h:39
Store motion information from a 3DConnexion input device.
virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo)
Action on motion event.
provide 3DConnexion device event-driven interface to the rendering window
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...