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 =========================================================================*/
30 #ifndef __vtkTDxInteractorStyleGeo_h
31 #define __vtkTDxInteractorStyleGeo_h
32 
33 #include "vtkTDxInteractorStyle.h"
34 
35 class vtkTransform;
36 
38 {
39 public:
40  static vtkTDxInteractorStyleGeo *New();
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
44  //BTX
46 
47  virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
48  //ETX
50 
51 protected:
53  virtual ~vtkTDxInteractorStyleGeo();
54 
55  vtkTransform *Transform; // Used for internal intermediate calculation.
56 
57 private:
58  vtkTDxInteractorStyleGeo(const vtkTDxInteractorStyleGeo&); // Not implemented.
59  void operator=(const vtkTDxInteractorStyleGeo&); // Not implemented.
60 };
61 #endif