VTK  9.2.5
vtkExtractEnclosedPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractEnclosedPoints.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 =========================================================================*/
85 #ifndef vtkExtractEnclosedPoints_h
86 #define vtkExtractEnclosedPoints_h
87 
88 #include "vtkFiltersPointsModule.h" // For export macro
89 #include "vtkPointCloudFilter.h"
90 
91 class VTKFILTERSPOINTS_EXPORT vtkExtractEnclosedPoints : public vtkPointCloudFilter
92 {
93 public:
95 
100  void PrintSelf(ostream& os, vtkIndent indent) override;
102 
104 
112 
114 
120 
122 
126  vtkSetMacro(CheckSurface, vtkTypeBool);
127  vtkBooleanMacro(CheckSurface, vtkTypeBool);
128  vtkGetMacro(CheckSurface, vtkTypeBool);
130 
132 
136  vtkSetClampMacro(Tolerance, double, 0.0, VTK_FLOAT_MAX);
137  vtkGetMacro(Tolerance, double);
139 
140 protected:
143 
145  double Tolerance;
146 
147  // Internal structures for managing the intersection testing
149 
150  // Satisfy vtkPointCloudFilter superclass API
151  int FilterPoints(vtkPointSet* input) override;
152 
155 
156 private:
158  void operator=(const vtkExtractEnclosedPoints&) = delete;
159 };
160 
161 #endif
Proxy object to connect input/output ports.
extract points inside of a closed polygonal surface
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
vtkPolyData * GetSurface()
Return a pointer to the enclosing surface.
void SetSurfaceConnection(vtkAlgorithmOutput *algOutput)
Set the surface to be used to test for containment.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.
int FilterPoints(vtkPointSet *input) override
static vtkExtractEnclosedPoints * New()
Standard methods for instantiation, type information, and printing.
void SetSurfaceData(vtkPolyData *pd)
Set the surface to be used to test for containment.
~vtkExtractEnclosedPoints() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkPolyData * GetSurface(vtkInformationVector *sourceInfo)
Return a pointer to the enclosing surface.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
abstract class for filtering a point cloud
concrete class for storing a set of points
Definition: vtkPointSet.h:109
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_FLOAT_MAX
Definition: vtkType.h:163