You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkInteractorStyleMultiTouchCamera.h
|
|
|
|
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.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkInteractorStyleMultiTouchCamera
|
|
* @brief multitouch manipulation of the camera
|
|
*
|
|
* vtkInteractorStyleMultiTouchCamera allows the user to interactively
|
|
* manipulate (rotate, pan, etc.) the camera, the viewpoint of the scene
|
|
* using multitouch gestures in addition to regular gestures
|
|
*
|
|
* @sa
|
|
* vtkInteractorStyleTrackballActor vtkInteractorStyleJoystickCamera
|
|
* vtkInteractorStyleJoystickActor
|
|
*/
|
|
|
|
#ifndef vtkInteractorStyleMultiTouchCamera_h
|
|
#define vtkInteractorStyleMultiTouchCamera_h
|
|
|
|
#include "vtkInteractionStyleModule.h" // For export macro
|
|
#include "vtkInteractorStyleTrackballCamera.h"
|
|
#include "vtkRenderWindowInteractor.h" // for max pointers
|
|
|
|
class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleMultiTouchCamera
|
|
: public vtkInteractorStyleTrackballCamera
|
|
{
|
|
public:
|
|
static vtkInteractorStyleMultiTouchCamera* New();
|
|
vtkTypeMacro(vtkInteractorStyleMultiTouchCamera, vtkInteractorStyleTrackballCamera);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
//@{
|
|
/**
|
|
* Event bindings for gestures
|
|
*/
|
|
void OnStartRotate() override;
|
|
void OnRotate() override;
|
|
void OnEndRotate() override;
|
|
void OnStartPinch() override;
|
|
void OnPinch() override;
|
|
void OnEndPinch() override;
|
|
void OnStartPan() override;
|
|
void OnPan() override;
|
|
void OnEndPan() override;
|
|
|
|
//@}
|
|
|
|
protected:
|
|
vtkInteractorStyleMultiTouchCamera();
|
|
~vtkInteractorStyleMultiTouchCamera() override;
|
|
|
|
private:
|
|
vtkInteractorStyleMultiTouchCamera(const vtkInteractorStyleMultiTouchCamera&) = delete;
|
|
void operator=(const vtkInteractorStyleMultiTouchCamera&) = delete;
|
|
};
|
|
|
|
#endif
|