VTK  9.2.6
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 =========================================================================*/
211 #ifndef vtkWindowedSincPolyDataFilter_h
212 #define vtkWindowedSincPolyDataFilter_h
213 
214 #include "vtkFiltersCoreModule.h" // For export macro
215 #include "vtkPolyDataAlgorithm.h"
216 
217 class VTKFILTERSCORE_EXPORT vtkWindowedSincPolyDataFilter : public vtkPolyDataAlgorithm
218 {
219 public:
221  void PrintSelf(ostream& os, vtkIndent indent) override;
222 
230 
232 
237  vtkSetClampMacro(NumberOfIterations, int, 0, VTK_INT_MAX);
238  vtkGetMacro(NumberOfIterations, int);
240 
242 
245  vtkSetClampMacro(PassBand, double, 0.0, 2.0);
246  vtkGetMacro(PassBand, double);
248 
250 
258  vtkSetMacro(NormalizeCoordinates, vtkTypeBool);
259  vtkGetMacro(NormalizeCoordinates, vtkTypeBool);
260  vtkBooleanMacro(NormalizeCoordinates, vtkTypeBool);
262 
264 
269  vtkSetMacro(FeatureEdgeSmoothing, vtkTypeBool);
270  vtkGetMacro(FeatureEdgeSmoothing, vtkTypeBool);
271  vtkBooleanMacro(FeatureEdgeSmoothing, vtkTypeBool);
273 
275 
279  vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
280  vtkGetMacro(FeatureAngle, double);
282 
284 
288  vtkSetClampMacro(EdgeAngle, double, 0.0, 180.0);
289  vtkGetMacro(EdgeAngle, double);
291 
293 
297  vtkSetMacro(BoundarySmoothing, vtkTypeBool);
298  vtkGetMacro(BoundarySmoothing, vtkTypeBool);
299  vtkBooleanMacro(BoundarySmoothing, vtkTypeBool);
301 
303 
307  vtkSetMacro(NonManifoldSmoothing, vtkTypeBool);
308  vtkGetMacro(NonManifoldSmoothing, vtkTypeBool);
309  vtkBooleanMacro(NonManifoldSmoothing, vtkTypeBool);
311 
313 
316  vtkSetMacro(GenerateErrorScalars, vtkTypeBool);
317  vtkGetMacro(GenerateErrorScalars, vtkTypeBool);
318  vtkBooleanMacro(GenerateErrorScalars, vtkTypeBool);
320 
322 
325  vtkSetMacro(GenerateErrorVectors, vtkTypeBool);
326  vtkGetMacro(GenerateErrorVectors, vtkTypeBool);
327  vtkBooleanMacro(GenerateErrorVectors, vtkTypeBool);
329 
330 protected:
332  ~vtkWindowedSincPolyDataFilter() override = default;
333 
335 
337  double PassBand;
338 
340 
342  double FeatureAngle;
343  double EdgeAngle;
346 
349 
350 private:
352  void operator=(const vtkWindowedSincPolyDataFilter&) = delete;
353 };
354 
355 #endif
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.
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