VTK  9.3.1
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 
46  static vtkFillHolesFilter* New();
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
identify and fill holes in meshes
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkPolyDataAlgorithm * New()
#define VTK_FLOAT_MAX
Definition: vtkType.h:152
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:28
superclass for all geometric transformations
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.