VTK  9.6.1
vtkAreaPicker.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
37
38#ifndef vtkAreaPicker_h
39#define vtkAreaPicker_h
40
42#include "vtkRenderingCoreModule.h" // For export macro
43#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
44
45VTK_ABI_NAMESPACE_BEGIN
46class vtkDataObject;
47class vtkRenderer;
48class vtkPoints;
49class vtkPlanes;
52class vtkDataSet;
54class vtkProp;
55
56class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkAreaPicker : public vtkAbstractPropPicker
57{
58public:
59 static vtkAreaPicker* New();
61 void PrintSelf(ostream& os, vtkIndent indent) override;
62
66 void SetPickCoords(double x0, double y0, double x1, double y1);
67
72
76 virtual int Pick();
77
83 virtual int AreaPick(double x0, double y0, double x1, double y1, vtkRenderer* renderer = nullptr);
84
90 int Pick(double x0, double y0, double vtkNotUsed(z0), vtkRenderer* renderer = nullptr) override
91 {
92 return this->AreaPick(x0, y0, x0 + 1.0, y0 + 1.0, renderer);
93 }
94
96
99 vtkGetObjectMacro(Mapper, vtkAbstractMapper3D);
101
103
107 vtkGetObjectMacro(DataSet, vtkDataSet);
109
111
115 vtkGetObjectMacro(DataObject, vtkDataObject);
117
123
125
130 vtkGetObjectMacro(Frustum, vtkPlanes);
132
134
137 vtkGetObjectMacro(ClipPoints, vtkPoints);
139
140protected:
142 ~vtkAreaPicker() override;
143
144 void Initialize() override;
145 void DefineFrustum(double x0, double y0, double x1, double y1, vtkRenderer*);
146 virtual int PickProps(vtkRenderer* renderer);
148
149 int ABoxFrustumIsect(double bounds[], double& mindist);
150
153
154 vtkProp3DCollection* Prop3Ds; // candidate actors (based on bounding box)
155 vtkAbstractMapper3D* Mapper; // selected mapper (if the prop has a mapper)
156 vtkDataSet* DataSet; // selected dataset (if there is one)
157 vtkDataObject* DataObject; // selected dataobject (this is useful to represent selected objects
158 // which directly derive vtkDataObject)
159
160 // used internally to do prop intersection tests
162
163 double X0;
164 double Y0;
165 double X1;
166 double Y1;
167
168private:
169 vtkAreaPicker(const vtkAreaPicker&) = delete;
170 void operator=(const vtkAreaPicker&) = delete;
171};
172
173VTK_ABI_NAMESPACE_END
174#endif
abstract class specifies interface to map 3D data
static vtkAreaPicker * New()
int ABoxFrustumIsect(double bounds[], double &mindist)
void SetRenderer(vtkRenderer *)
Set the default renderer to pick on.
vtkProp3DCollection * GetProp3Ds()
Return a collection of all the prop 3D's that were intersected by the pick ray.
vtkAbstractMapper3D * Mapper
vtkPlanes * Frustum
virtual int Pick()
Perform an AreaPick within the default screen rectangle and renderer.
vtkDataSet * DataSet
vtkDataObject * DataObject
void Initialize() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int PickProps(vtkRenderer *renderer)
int Pick(double x0, double y0, double z0, vtkRenderer *renderer=nullptr) override
Perform pick operation in volume behind the given screen coordinate.
void DefineFrustum(double x0, double y0, double x1, double y1, vtkRenderer *)
int TypeDecipher(vtkProp *, vtkAbstractMapper3D **)
virtual int AreaPick(double x0, double y0, double x1, double y1, vtkRenderer *renderer=nullptr)
Perform pick operation in volume behind the given screen coordinates.
void SetPickCoords(double x0, double y0, double x1, double y1)
Set the default screen rectangle to pick in.
vtkExtractSelectedFrustum * FrustumExtractor
vtkPoints * ClipPoints
~vtkAreaPicker() override
vtkProp3DCollection * Prop3Ds
general representation of visualization data
abstract class to specify dataset behavior
Definition vtkDataSet.h:57
Returns the portion of the input dataset that lies within a selection frustum.
a simple class to control print indentation
Definition vtkIndent.h:29
implicit function for convex set of planes
Definition vtkPlanes.h:42
represent and manipulate 3D points
Definition vtkPoints.h:30
an ordered list of 3D props
abstract superclass for all actors, volumes and annotations
Definition vtkProp.h:50
abstract specification for renderers
Definition vtkRenderer.h:64
#define VTK_MARSHALAUTO