VTK  9.6.1
vtkPropPicker.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
23
24#ifndef vtkPropPicker_h
25#define vtkPropPicker_h
26
28#include "vtkRenderingCoreModule.h" // For export macro
29#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
30
31VTK_ABI_NAMESPACE_BEGIN
32class vtkProp;
34
35class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkPropPicker : public vtkAbstractPropPicker
36{
37public:
38 static vtkPropPicker* New();
39
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
49 int PickProp(double selectionX, double selectionY, vtkRenderer* renderer);
50
56 double selectionX, double selectionY, vtkRenderer* renderer, vtkPropCollection* pickfrom);
57
61 int Pick(double selectionX, double selectionY, double selectionZ, vtkRenderer* renderer) override;
62 int Pick(double selectionPt[3], vtkRenderer* renderer)
63 {
64 return this->Pick(selectionPt[0], selectionPt[1], selectionPt[2], renderer);
65 }
66
72 int Pick3DPoint(double selectionPt[3], vtkRenderer* ren) override;
73
80 int PickProp3DPoint(double pos[3], vtkRenderer* renderer);
81
86 int PickProp3DPoint(double pos[3], vtkRenderer* renderer, vtkPropCollection* pickfrom);
87
91 virtual int PickProp3DRay(double selectionPt[3], double eventWorldOrientation[4],
92 vtkRenderer* renderer, vtkPropCollection* pickfrom);
93
99 int Pick3DRay(double selectionPt[3], double orient[4], vtkRenderer* ren) override;
100
101protected:
103 ~vtkPropPicker() override;
104
105 void Initialize() override;
106
108
109 // Used to get x-y-z pick position
111
112private:
113 vtkPropPicker(const vtkPropPicker&) = delete;
114 void operator=(const vtkPropPicker&) = delete;
115};
116
117VTK_ABI_NAMESPACE_END
118#endif
virtual int Pick(double selectionX, double selectionY, double selectionZ, vtkRenderer *renderer)=0
Perform pick operation with selection point provided.
a simple class to control print indentation
Definition vtkIndent.h:29
an ordered list of Props
void Initialize() override
int PickProp(double selectionX, double selectionY, vtkRenderer *renderer)
Perform the pick and set the PickedProp ivar.
~vtkPropPicker() override
int PickProp3DPoint(double pos[3], vtkRenderer *renderer)
Perform the pick and set the PickedProp ivar.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int PickProp3DRay(double selectionPt[3], double eventWorldOrientation[4], vtkRenderer *renderer, vtkPropCollection *pickfrom)
Perform a pick from the user-provided list of vtkProps.
int Pick3DRay(double selectionPt[3], double orient[4], vtkRenderer *ren) override
Perform pick operation with selection point provided.
vtkWorldPointPicker * WorldPointPicker
static vtkPropPicker * New()
int PickProp(double selectionX, double selectionY, vtkRenderer *renderer, vtkPropCollection *pickfrom)
Perform a pick from the user-provided list of vtkProps and not from the list of vtkProps that the ren...
vtkPropCollection * PickFromProps
int Pick(double selectionX, double selectionY, double selectionZ, vtkRenderer *renderer) override
override superclasses' Pick() method.
int Pick(double selectionPt[3], vtkRenderer *renderer)
int PickProp3DPoint(double pos[3], vtkRenderer *renderer, vtkPropCollection *pickfrom)
Perform a pick from the user-provided list of vtkProps and not from the list of vtkProps that the ren...
int Pick3DPoint(double selectionPt[3], vtkRenderer *ren) override
Perform pick operation with selection point provided.
abstract superclass for all actors, volumes and annotations
Definition vtkProp.h:50
abstract specification for renderers
Definition vtkRenderer.h:64
find world x,y,z corresponding to display x,y,z
#define VTK_MARSHALAUTO