VTK  9.4.20241114
vtkFillHolesFilter.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
69#ifndef vtkFillHolesFilter_h
70#define vtkFillHolesFilter_h
71
72#include "vtkFiltersModelingModule.h" // For export macro
74
75VTK_ABI_NAMESPACE_BEGIN
77
78class VTKFILTERSMODELING_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm
79{
80public:
82
87 void PrintSelf(ostream& os, vtkIndent indent) override;
89
91
97 vtkSetClampMacro(HoleSize, double, 0.0, VTK_FLOAT_MAX);
98 vtkGetMacro(HoleSize, double);
100
101protected:
104
106
107 double HoleSize;
108
109private:
110 vtkFillHolesFilter(const vtkFillHolesFilter&) = delete;
111 void operator=(const vtkFillHolesFilter&) = delete;
112};
113
114VTK_ABI_NAMESPACE_END
115#endif
superclass for all geometric transformations
identify and fill holes in meshes
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information and printing.
static vtkFillHolesFilter * New()
Standard methods for instantiation, type information and printing.
~vtkFillHolesFilter() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
#define VTK_FLOAT_MAX
Definition vtkType.h:152