VTK  9.1.0
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 =========================================================================*/
205 #ifndef vtkWindowedSincPolyDataFilter_h
206 #define vtkWindowedSincPolyDataFilter_h
207 
208 #include "vtkFiltersCoreModule.h" // For export macro
209 #include "vtkPolyDataAlgorithm.h"
210 
211 class VTKFILTERSCORE_EXPORT vtkWindowedSincPolyDataFilter : public vtkPolyDataAlgorithm
212 {
213 public:
215  void PrintSelf(ostream& os, vtkIndent indent) override;
216 
224 
226 
231  vtkSetClampMacro(NumberOfIterations, int, 0, VTK_INT_MAX);
232  vtkGetMacro(NumberOfIterations, int);
234 
236 
239  vtkSetClampMacro(PassBand, double, 0.0, 2.0);
240  vtkGetMacro(PassBand, double);
242 
244 
252  vtkSetMacro(NormalizeCoordinates, vtkTypeBool);
253  vtkGetMacro(NormalizeCoordinates, vtkTypeBool);
254  vtkBooleanMacro(NormalizeCoordinates, vtkTypeBool);
256 
258 
263  vtkSetMacro(FeatureEdgeSmoothing, vtkTypeBool);
264  vtkGetMacro(FeatureEdgeSmoothing, vtkTypeBool);
265  vtkBooleanMacro(FeatureEdgeSmoothing, vtkTypeBool);
267 
269 
273  vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
274  vtkGetMacro(FeatureAngle, double);
276 
278 
282  vtkSetClampMacro(EdgeAngle, double, 0.0, 180.0);
283  vtkGetMacro(EdgeAngle, double);
285 
287 
291  vtkSetMacro(BoundarySmoothing, vtkTypeBool);
292  vtkGetMacro(BoundarySmoothing, vtkTypeBool);
293  vtkBooleanMacro(BoundarySmoothing, vtkTypeBool);
295 
297 
301  vtkSetMacro(NonManifoldSmoothing, vtkTypeBool);
302  vtkGetMacro(NonManifoldSmoothing, vtkTypeBool);
303  vtkBooleanMacro(NonManifoldSmoothing, vtkTypeBool);
305 
307 
310  vtkSetMacro(GenerateErrorScalars, vtkTypeBool);
311  vtkGetMacro(GenerateErrorScalars, vtkTypeBool);
312  vtkBooleanMacro(GenerateErrorScalars, vtkTypeBool);
314 
316 
319  vtkSetMacro(GenerateErrorVectors, vtkTypeBool);
320  vtkGetMacro(GenerateErrorVectors, vtkTypeBool);
321  vtkBooleanMacro(GenerateErrorVectors, vtkTypeBool);
323 
324 protected:
326  ~vtkWindowedSincPolyDataFilter() override = default;
327 
329 
331  double PassBand;
332 
334 
336  double FeatureAngle;
337  double EdgeAngle;
340 
343 
344 private:
346  void operator=(const vtkWindowedSincPolyDataFilter&) = delete;
347 };
348 
349 #endif
a simple class to control print indentation
Definition: vtkIndent.h:113
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...
~vtkWindowedSincPolyDataFilter() override=default
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_INT_MAX
Definition: vtkType.h:155