VTK  9.2.5
vtkFillHolesFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkFillHolesFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
81 #ifndef vtkFillHolesFilter_h
82 #define vtkFillHolesFilter_h
83 
84 #include "vtkFiltersModelingModule.h" // For export macro
85 #include "vtkPolyDataAlgorithm.h"
86 
88 
89 class VTKFILTERSMODELING_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm
90 {
91 public:
93 
98  void PrintSelf(ostream& os, vtkIndent indent) override;
100 
102 
108  vtkSetClampMacro(HoleSize, double, 0.0, VTK_FLOAT_MAX);
109  vtkGetMacro(HoleSize, double);
111 
112 protected:
115 
117 
118  double HoleSize;
119 
120 private:
121  vtkFillHolesFilter(const vtkFillHolesFilter&) = delete;
122  void operator=(const vtkFillHolesFilter&) = delete;
123 };
124 
125 #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:119
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:163