VTK  9.3.1
vtkSphereTreeFilter.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
32 #ifndef vtkSphereTreeFilter_h
33 #define vtkSphereTreeFilter_h
34 
35 #include "vtkFiltersCoreModule.h" // For export macro
36 #include "vtkPolyDataAlgorithm.h"
37 
38 #define VTK_SPHERE_TREE_LEVELS 0
39 #define VTK_SPHERE_TREE_POINT 1
40 #define VTK_SPHERE_TREE_LINE 2
41 #define VTK_SPHERE_TREE_PLANE 3
42 
43 VTK_ABI_NAMESPACE_BEGIN
44 class vtkSphereTree;
45 
46 class VTKFILTERSCORE_EXPORT vtkSphereTreeFilter : public vtkPolyDataAlgorithm
47 {
48 public:
52  static vtkSphereTreeFilter* New();
53 
55 
59  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
66  virtual void SetSphereTree(vtkSphereTree*);
67  vtkGetObjectMacro(SphereTree, vtkSphereTree);
69 
71 
79  vtkSetMacro(ExtractionMode, int);
80  vtkGetMacro(ExtractionMode, int);
81  void SetExtractionModeToLevels() { this->SetExtractionMode(VTK_SPHERE_TREE_LEVELS); }
82  void SetExtractionModeToPoint() { this->SetExtractionMode(VTK_SPHERE_TREE_POINT); }
83  void SetExtractionModeToLine() { this->SetExtractionMode(VTK_SPHERE_TREE_LINE); }
84  void SetExtractionModeToPlane() { this->SetExtractionMode(VTK_SPHERE_TREE_PLANE); }
85  const char* GetExtractionModeAsString();
87 
89 
94  vtkSetMacro(TreeHierarchy, bool);
95  vtkGetMacro(TreeHierarchy, bool);
96  vtkBooleanMacro(TreeHierarchy, bool);
98 
100 
107  vtkSetClampMacro(Level, int, -1, VTK_SHORT_MAX);
108  vtkGetMacro(Level, int);
110 
112 
116  vtkSetVector3Macro(Point, double);
117  vtkGetVectorMacro(Point, double, 3);
119 
121 
126  vtkSetVector3Macro(Ray, double);
127  vtkGetVectorMacro(Ray, double, 3);
129 
131 
135  vtkSetVector3Macro(Normal, double);
136  vtkGetVectorMacro(Normal, double, 3);
138 
142  vtkMTimeType GetMTime() override;
143 
144 protected:
146  ~vtkSphereTreeFilter() override;
147 
151  int Level;
152  double Point[3];
153  double Ray[3];
154  double Normal[3];
155 
157  int FillInputPortInformation(int port, vtkInformation* info) override;
158 
159 private:
160  vtkSphereTreeFilter(const vtkSphereTreeFilter&) = delete;
161  void operator=(const vtkSphereTreeFilter&) = delete;
162 };
163 
164 VTK_ABI_NAMESPACE_END
165 #endif
void SetExtractionModeToLine()
Specify what information this filter is to extract from the sphere tree.
Store vtkAlgorithm input/output information.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
#define VTK_SPHERE_TREE_PLANE
represent a sphere tree as vtkPolyData
void SetExtractionModeToPoint()
Specify what information this filter is to extract from the sphere tree.
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:28
void SetExtractionModeToPlane()
Specify what information this filter is to extract from the sphere tree.
#define VTK_SPHERE_TREE_POINT
virtual vtkMTimeType GetMTime()
Return this object's modified time.
#define VTK_SHORT_MAX
Definition: vtkType.h:140
vtkSphereTree * SphereTree
#define VTK_SPHERE_TREE_LINE
class to build and traverse sphere trees
Definition: vtkSphereTree.h:61
#define VTK_SPHERE_TREE_LEVELS
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetExtractionModeToLevels()
Specify what information this filter is to extract from the sphere tree.