VTK  9.3.0
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
30 #ifndef vtkFillHolesFilter_h
31 #define vtkFillHolesFilter_h
32 
33 #include "vtkFiltersModelingModule.h" // For export macro
34 #include "vtkPolyDataAlgorithm.h"
35 
36 VTK_ABI_NAMESPACE_BEGIN
38 
39 class VTKFILTERSMODELING_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm
40 {
41 public:
43 
48  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
58  vtkSetClampMacro(HoleSize, double, 0.0, VTK_FLOAT_MAX);
59  vtkGetMacro(HoleSize, double);
61 
62 protected:
64  ~vtkFillHolesFilter() override;
65 
67 
68  double HoleSize;
69 
70 private:
71  vtkFillHolesFilter(const vtkFillHolesFilter&) = delete;
72  void operator=(const vtkFillHolesFilter&) = delete;
73 };
74 
75 VTK_ABI_NAMESPACE_END
76 #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:29
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