VTK
vtkPropPicker.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPropPicker.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 =========================================================================*/
35 #ifndef __vtkPropPicker_h
36 #define __vtkPropPicker_h
37 
38 #include "vtkRenderingCoreModule.h" // For export macro
39 #include "vtkAbstractPropPicker.h"
40 
41 class vtkProp;
43 
44 class VTKRENDERINGCORE_EXPORT vtkPropPicker : public vtkAbstractPropPicker
45 {
46 public:
47  static vtkPropPicker *New();
48 
50  void PrintSelf(ostream& os, vtkIndent indent);
51 
56  int PickProp(double selectionX, double selectionY, vtkRenderer *renderer);
57 
59 
61  int PickProp(double selectionX, double selectionY, vtkRenderer *renderer,
62  vtkPropCollection* pickfrom);
64 
66 
67  int Pick(double selectionX, double selectionY, double selectionZ,
68  vtkRenderer *renderer);
69  int Pick(double selectionPt[3], vtkRenderer *renderer)
70  { return this->Pick( selectionPt[0],
71  selectionPt[1], selectionPt[2], renderer); };
73 
74 protected:
75  vtkPropPicker();
76  ~vtkPropPicker();
77 
78  void Initialize();
79 
81 
82  // Used to get x-y-z pick position
84 private:
85  vtkPropPicker(const vtkPropPicker&); // Not implemented.
86  void operator=(const vtkPropPicker&); // Not implemented.
87 };
88 
89 #endif
90 
91