VTK  9.3.1
vtkInteractorStyleTerrain.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
43#ifndef vtkInteractorStyleTerrain_h
44#define vtkInteractorStyleTerrain_h
45
46#include "vtkInteractionStyleModule.h" // For export macro
47#include "vtkInteractorStyle.h"
48
49VTK_ABI_NAMESPACE_BEGIN
51class vtkSphereSource;
52class vtkExtractEdges;
53
54class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleTerrain : public vtkInteractorStyle
55{
56public:
61
63 void PrintSelf(ostream& os, vtkIndent indent) override;
64
66
70 void OnMouseMove() override;
71 void OnLeftButtonDown() override;
72 void OnLeftButtonUp() override;
73 void OnMiddleButtonDown() override;
74 void OnMiddleButtonUp() override;
75 void OnRightButtonDown() override;
76 void OnRightButtonUp() override;
78
82 void OnChar() override;
83
84 // These methods for the different interactions in different modes
85 // are overridden in subclasses to perform the correct motion.
86 void Rotate() override;
87 void Pan() override;
88 void Dolly() override;
89
91
94 vtkSetMacro(LatLongLines, vtkTypeBool);
95 vtkGetMacro(LatLongLines, vtkTypeBool);
96 vtkBooleanMacro(LatLongLines, vtkTypeBool);
98
99protected:
102
103 // Internal helper attributes
105
110
113
115
116private:
118 void operator=(const vtkInteractorStyleTerrain&) = delete;
119};
120
121VTK_ABI_NAMESPACE_END
122#endif
represents an object (geometry & properties) in a rendered scene
Definition vtkActor.h:41
extract cell edges from any type of dataset
a simple class to control print indentation
Definition vtkIndent.h:29
manipulate camera in scene with natural view up (e.g., terrain)
void OnMiddleButtonUp() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void OnLeftButtonUp() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void OnLeftButtonDown() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void OnMouseMove() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
static vtkInteractorStyleTerrain * New()
Instantiate the object.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void OnRightButtonDown() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void OnMiddleButtonDown() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void Rotate() override
These methods for the different interactions in different modes are overridden in subclasses to perfo...
void OnRightButtonUp() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
~vtkInteractorStyleTerrain() override
void OnChar() override
Override the "fly-to" (f keypress) for images.
provide event-driven interface to the rendering window (defines trackball mode)
map vtkPolyData to graphics primitives
create a polygonal sphere centered at the origin
int vtkTypeBool
Definition vtkABI.h:64