VTK
vtkTDxInteractorStyleGeo.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTDxInteractorStyleGeo.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=========================================================================*/
31#ifndef vtkTDxInteractorStyleGeo_h
32#define vtkTDxInteractorStyleGeo_h
33
34#include "vtkRenderingOpenGLModule.h" // For export macro
36
37class vtkTransform;
38
39class VTKRENDERINGOPENGL_EXPORT vtkTDxInteractorStyleGeo : public vtkTDxInteractorStyle
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent);
45
50 virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
51
52protected:
55
56 vtkTransform *Transform; // Used for internal intermediate calculation.
57
58private:
59 vtkTDxInteractorStyleGeo(const vtkTDxInteractorStyleGeo&) VTK_DELETE_FUNCTION;
60 void operator=(const vtkTDxInteractorStyleGeo&) VTK_DELETE_FUNCTION;
61};
62#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
interactive manipulation of the camera with a 3DConnexion device, similar to google earth
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual ~vtkTDxInteractorStyleGeo()
static vtkTDxInteractorStyleGeo * New()
virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo)
Action on motion event.
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:61