VTK  9.0.1
vtkOpenVRPropPicker.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkOpenVRPropPicker.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 =========================================================================*/
20 #ifndef vtkOpenVRPropPicker_h
21 #define vtkOpenVRPropPicker_h
22 
23 #include "vtkPropPicker.h"
24 #include "vtkRenderingOpenVRModule.h" // For export macro
25 
26 class vtkProp;
27 
28 class VTKRENDERINGOPENVR_EXPORT vtkOpenVRPropPicker : public vtkPropPicker
29 {
30 public:
31  static vtkOpenVRPropPicker* New();
32 
34 
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
37 protected:
39  ~vtkOpenVRPropPicker() override;
40 
41  void Initialize() override;
42 
43 private:
44  vtkOpenVRPropPicker(const vtkOpenVRPropPicker&) = delete; // Not implemented.
45  void operator=(const vtkOpenVRPropPicker&) = delete; // Not implemented.
46 };
47 
48 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:53
pick an actor/prop using graphics hardware
Definition: vtkPropPicker.h:45
void Initialize() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPropPicker * New()
a simple class to control print indentation
Definition: vtkIndent.h:33