VTK  9.3.0
vtkExtractEnclosedPoints.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
44#ifndef vtkExtractEnclosedPoints_h
45#define vtkExtractEnclosedPoints_h
46
47#include "vtkFiltersPointsModule.h" // For export macro
48#include "vtkPointCloudFilter.h"
49
50VTK_ABI_NAMESPACE_BEGIN
51class VTKFILTERSPOINTS_EXPORT vtkExtractEnclosedPoints : public vtkPointCloudFilter
52{
53public:
55
60 void PrintSelf(ostream& os, vtkIndent indent) override;
62
64
72
74
80
82
86 vtkSetMacro(CheckSurface, vtkTypeBool);
87 vtkBooleanMacro(CheckSurface, vtkTypeBool);
88 vtkGetMacro(CheckSurface, vtkTypeBool);
90
92
96 vtkSetClampMacro(Tolerance, double, 0.0, VTK_FLOAT_MAX);
97 vtkGetMacro(Tolerance, double);
99
100protected:
103
105 double Tolerance;
106
107 // Internal structures for managing the intersection testing
109
110 // Satisfy vtkPointCloudFilter superclass API
111 int FilterPoints(vtkPointSet* input) override;
112
115
116private:
118 void operator=(const vtkExtractEnclosedPoints&) = delete;
119};
120
121VTK_ABI_NAMESPACE_END
122#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:29
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:59
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:80
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_FLOAT_MAX
Definition vtkType.h:152