You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
2 years ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: $RCSfile: vtkInteractorStyleTrackball.h,v $
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
// .NAME vtkInteractorStyleTrackball - provides trackball motion control
|
||
|
|
||
|
// .SECTION Description
|
||
|
// vtkInteractorStyleTrackball is an implementation of vtkInteractorStyle
|
||
|
// that defines the trackball style. It is now deprecated and as such a
|
||
|
// subclass of vtkInteractorStyleSwitch
|
||
|
|
||
|
// .SECTION See Also
|
||
|
// vtkInteractorStyleSwitch vtkInteractorStyleTrackballActor vtkInteractorStyleJoystickCamera
|
||
|
|
||
|
#ifndef __vtkInteractorStyleTrackball_h
|
||
|
#define __vtkInteractorStyleTrackball_h
|
||
|
|
||
|
#include "vtkInteractorStyleSwitch.h"
|
||
|
|
||
|
class VTK_RENDERING_EXPORT vtkInteractorStyleTrackball : public vtkInteractorStyleSwitch
|
||
|
{
|
||
|
public:
|
||
|
static vtkInteractorStyleTrackball *New();
|
||
|
vtkTypeRevisionMacro(vtkInteractorStyleTrackball,vtkInteractorStyleSwitch);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
||
|
protected:
|
||
|
vtkInteractorStyleTrackball();
|
||
|
~vtkInteractorStyleTrackball();
|
||
|
|
||
|
private:
|
||
|
vtkInteractorStyleTrackball(const vtkInteractorStyleTrackball&); // Not implemented.
|
||
|
void operator=(const vtkInteractorStyleTrackball&); // Not implemented.
|
||
|
};
|
||
|
|
||
|
#endif
|