Rendering/vtkInteractorStyleTrackball.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00043 #ifndef __vtkInteractorStyleTrackball_h
00044 #define __vtkInteractorStyleTrackball_h
00045
00046 #include "vtkInteractorStyleSwitch.h"
00047
00048 class VTK_RENDERING_EXPORT vtkInteractorStyleTrackball : public vtkInteractorStyleSwitch
00049 {
00050 public:
00051 static vtkInteractorStyleTrackball *New();
00052 vtkTypeRevisionMacro(vtkInteractorStyleTrackball,vtkInteractorStyleSwitch);
00053 void PrintSelf(ostream& os, vtkIndent indent);
00054
00055 protected:
00056 vtkInteractorStyleTrackball();
00057 ~vtkInteractorStyleTrackball();
00058
00059 private:
00060 vtkInteractorStyleTrackball(const vtkInteractorStyleTrackball&);
00061 void operator=(const vtkInteractorStyleTrackball&);
00062 };
00063
00064 #endif