VTK
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 =========================================================================*/
42 #ifndef vtkFillHolesFilter_h
43 #define vtkFillHolesFilter_h
44 
45 #include "vtkFiltersModelingModule.h" // For export macro
46 #include "vtkPolyDataAlgorithm.h"
47 
49 
50 class VTKFILTERSMODELING_EXPORT vtkFillHolesFilter : public vtkPolyDataAlgorithm
51 {
52 public:
54 
57  static vtkFillHolesFilter *New();
59  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
69  vtkSetClampMacro(HoleSize, double, 0.0, VTK_FLOAT_MAX);
70  vtkGetMacro(HoleSize, double);
72 
73 protected:
75  ~vtkFillHolesFilter() override;
76 
78 
79  double HoleSize;
80 
81 private:
82  vtkFillHolesFilter(const vtkFillHolesFilter&) = delete;
83  void operator=(const vtkFillHolesFilter&) = delete;
84 };
85 
86 #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:167
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
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.