VTK  9.0.1
vtkWindowedSincPolyDataFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkWindowedSincPolyDataFilter.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 =========================================================================*/
138 #ifndef vtkWindowedSincPolyDataFilter_h
139 #define vtkWindowedSincPolyDataFilter_h
140 
141 #include "vtkFiltersCoreModule.h" // For export macro
142 #include "vtkPolyDataAlgorithm.h"
143 
144 class VTKFILTERSCORE_EXPORT vtkWindowedSincPolyDataFilter : public vtkPolyDataAlgorithm
145 {
146 public:
148  void PrintSelf(ostream& os, vtkIndent indent) override;
149 
158 
160 
164  vtkSetClampMacro(NumberOfIterations, int, 0, VTK_INT_MAX);
165  vtkGetMacro(NumberOfIterations, int);
167 
169 
172  vtkSetClampMacro(PassBand, double, 0.0, 2.0);
173  vtkGetMacro(PassBand, double);
175 
177 
186  vtkSetMacro(NormalizeCoordinates, vtkTypeBool);
187  vtkGetMacro(NormalizeCoordinates, vtkTypeBool);
188  vtkBooleanMacro(NormalizeCoordinates, vtkTypeBool);
190 
192 
195  vtkSetMacro(FeatureEdgeSmoothing, vtkTypeBool);
196  vtkGetMacro(FeatureEdgeSmoothing, vtkTypeBool);
197  vtkBooleanMacro(FeatureEdgeSmoothing, vtkTypeBool);
199 
201 
204  vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
205  vtkGetMacro(FeatureAngle, double);
207 
209 
213  vtkSetClampMacro(EdgeAngle, double, 0.0, 180.0);
214  vtkGetMacro(EdgeAngle, double);
216 
218 
221  vtkSetMacro(BoundarySmoothing, vtkTypeBool);
222  vtkGetMacro(BoundarySmoothing, vtkTypeBool);
223  vtkBooleanMacro(BoundarySmoothing, vtkTypeBool);
225 
227 
230  vtkSetMacro(NonManifoldSmoothing, vtkTypeBool);
231  vtkGetMacro(NonManifoldSmoothing, vtkTypeBool);
232  vtkBooleanMacro(NonManifoldSmoothing, vtkTypeBool);
234 
236 
239  vtkSetMacro(GenerateErrorScalars, vtkTypeBool);
240  vtkGetMacro(GenerateErrorScalars, vtkTypeBool);
241  vtkBooleanMacro(GenerateErrorScalars, vtkTypeBool);
243 
245 
248  vtkSetMacro(GenerateErrorVectors, vtkTypeBool);
249  vtkGetMacro(GenerateErrorVectors, vtkTypeBool);
250  vtkBooleanMacro(GenerateErrorVectors, vtkTypeBool);
252 
253 protected:
256 
258 
260  double PassBand;
262  double FeatureAngle;
263  double EdgeAngle;
269 
270 private:
272  void operator=(const vtkWindowedSincPolyDataFilter&) = delete;
273 };
274 
275 #endif
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
adjust point positions using a windowed sinc function interpolation kernel
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkWindowedSincPolyDataFilter * New()
Construct object with number of iterations 20; passband .1; feature edge smoothing turned off; featur...
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_INT_MAX
Definition: vtkType.h:155