VTK  9.3.20240329
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
73 #include "vtkPolyDataAlgorithm.h"
74 
75 VTK_ABI_NAMESPACE_BEGIN
77 
78 class VTKFILTERSMODELING_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm
79 {
80 public:
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 
101 protected:
104 
106 
107  double HoleSize;
108 
109 private:
110  vtkFillHolesFilter(const vtkFillHolesFilter&) = delete;
111  void operator=(const vtkFillHolesFilter&) = delete;
112 };
113 
114 VTK_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