VTK  9.1.0
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=========================================================================*/
82#ifndef vtkExtractEnclosedPoints_h
83#define vtkExtractEnclosedPoints_h
84
85#include "vtkFiltersPointsModule.h" // For export macro
86#include "vtkPointCloudFilter.h"
87
88class VTKFILTERSPOINTS_EXPORT vtkExtractEnclosedPoints : public vtkPointCloudFilter
89{
90public:
92
97 void PrintSelf(ostream& os, vtkIndent indent) override;
99
101
109
111
117
119
123 vtkSetMacro(CheckSurface, vtkTypeBool);
124 vtkBooleanMacro(CheckSurface, vtkTypeBool);
125 vtkGetMacro(CheckSurface, vtkTypeBool);
127
129
133 vtkSetClampMacro(Tolerance, double, 0.0, VTK_FLOAT_MAX);
134 vtkGetMacro(Tolerance, double);
136
137protected:
140
142 double Tolerance;
143
144 // Internal structures for managing the intersection testing
146
147 // Satisfy vtkPointCloudFilter superclass API
148 int FilterPoints(vtkPointSet* input) override;
149
152
153private:
155 void operator=(const vtkExtractEnclosedPoints&) = delete;
156};
157
158#endif
Proxy object to connect input/output ports.
extract points inside of a closed polygonal surface
vtkPolyData * GetSurface(vtkInformationVector *sourceInfo)
Return a pointer to the enclosing surface.
static vtkExtractEnclosedPoints * New()
Standard methods for instantiation, type information, and printing.
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
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
vtkPolyData * GetSurface()
Return a pointer to the enclosing surface.
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.
a simple class to control print indentation
Definition: vtkIndent.h:113
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:106
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:195
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_FLOAT_MAX
Definition: vtkType.h:163