VTK  9.6.1
vtkPointPicker.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
26
27#ifndef vtkPointPicker_h
28#define vtkPointPicker_h
29
30#include "vtkPicker.h"
31#include "vtkRenderingCoreModule.h" // For export macro
32#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
33
34VTK_ABI_NAMESPACE_BEGIN
35class vtkDataSet;
36
37class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkPointPicker : public vtkPicker
38{
39public:
41
45 vtkTypeMacro(vtkPointPicker, vtkPicker);
46 void PrintSelf(ostream& os, vtkIndent indent) override;
48
50
53 vtkGetMacro(PointId, vtkIdType);
55
57
61 vtkSetMacro(UseCells, vtkTypeBool);
62 vtkGetMacro(UseCells, vtkTypeBool);
63 vtkBooleanMacro(UseCells, vtkTypeBool);
65
66protected:
68 ~vtkPointPicker() override = default;
69
70 vtkIdType PointId; // picked point
71 vtkTypeBool UseCells; // Use cell points vs. points directly
72
73 double IntersectWithLine(const double p1[3], const double p2[3], double tol,
74 vtkAssemblyPath* path, vtkProp3D* p, vtkAbstractMapper3D* m) override;
75 void Initialize() override;
76
77 vtkIdType IntersectDataSetWithLine(const double p1[3], double ray[3], double rayFactor,
78 double tol, vtkDataSet* dataSet, double& tMin, double minXYZ[3]);
79
80private:
81 vtkPointPicker(const vtkPointPicker&) = delete;
82 void operator=(const vtkPointPicker&) = delete;
83};
84
85VTK_ABI_NAMESPACE_END
86#endif
abstract class specifies interface to map 3D data
a list of nodes that form an assembly path
abstract class to specify dataset behavior
Definition vtkDataSet.h:57
a simple class to control print indentation
Definition vtkIndent.h:29
double IntersectWithLine(const double p1[3], const double p2[3], double tol, vtkAssemblyPath *path, vtkProp3D *p, vtkAbstractMapper3D *m) override
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.
vtkTypeBool UseCells
vtkIdType PointId
~vtkPointPicker() override=default
vtkIdType IntersectDataSetWithLine(const double p1[3], double ray[3], double rayFactor, double tol, vtkDataSet *dataSet, double &tMin, double minXYZ[3])
void Initialize() override
static vtkPointPicker * New()
Standard methods for instantiation, type information, and printing.
represents an 3D object for placement in a rendered scene
Definition vtkProp3D.h:40
int vtkTypeBool
Definition vtkABI.h:64
int vtkIdType
Definition vtkType.h:368
#define VTK_MARSHALAUTO