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 =========================================================================*/
162 #ifndef vtkWindowedSincPolyDataFilter_h
163 #define vtkWindowedSincPolyDataFilter_h
164 
165 #include "vtkFiltersCoreModule.h" // For export macro
166 #include "vtkPolyDataAlgorithm.h"
167 
168 class VTKFILTERSCORE_EXPORT vtkWindowedSincPolyDataFilter : public vtkPolyDataAlgorithm
169 {
170 public:
172  void PrintSelf(ostream& os, vtkIndent indent) override;
173 
181 
183 
188  vtkSetClampMacro(NumberOfIterations, int, 0, VTK_INT_MAX);
189  vtkGetMacro(NumberOfIterations, int);
191 
193 
196  vtkSetClampMacro(PassBand, double, 0.0, 2.0);
197  vtkGetMacro(PassBand, double);
199 
201 
209  vtkSetMacro(NormalizeCoordinates, vtkTypeBool);
210  vtkGetMacro(NormalizeCoordinates, vtkTypeBool);
211  vtkBooleanMacro(NormalizeCoordinates, vtkTypeBool);
213 
215 
220  vtkSetMacro(FeatureEdgeSmoothing, vtkTypeBool);
221  vtkGetMacro(FeatureEdgeSmoothing, vtkTypeBool);
222  vtkBooleanMacro(FeatureEdgeSmoothing, vtkTypeBool);
224 
226 
230  vtkSetClampMacro(FeatureAngle, double, 0.0, 180.0);
231  vtkGetMacro(FeatureAngle, double);
233 
235 
239  vtkSetClampMacro(EdgeAngle, double, 0.0, 180.0);
240  vtkGetMacro(EdgeAngle, double);
242 
244 
248  vtkSetMacro(BoundarySmoothing, vtkTypeBool);
249  vtkGetMacro(BoundarySmoothing, vtkTypeBool);
250  vtkBooleanMacro(BoundarySmoothing, vtkTypeBool);
252 
254 
258  vtkSetMacro(NonManifoldSmoothing, vtkTypeBool);
259  vtkGetMacro(NonManifoldSmoothing, vtkTypeBool);
260  vtkBooleanMacro(NonManifoldSmoothing, vtkTypeBool);
262 
264 
267  vtkSetMacro(GenerateErrorScalars, vtkTypeBool);
268  vtkGetMacro(GenerateErrorScalars, vtkTypeBool);
269  vtkBooleanMacro(GenerateErrorScalars, vtkTypeBool);
271 
273 
276  vtkSetMacro(GenerateErrorVectors, vtkTypeBool);
277  vtkGetMacro(GenerateErrorVectors, vtkTypeBool);
278  vtkBooleanMacro(GenerateErrorVectors, vtkTypeBool);
280 
281 protected:
283  ~vtkWindowedSincPolyDataFilter() override = default;
284 
286 
288  double PassBand;
289 
291 
293  double FeatureAngle;
294  double EdgeAngle;
297 
300 
301 private:
303  void operator=(const vtkWindowedSincPolyDataFilter&) = delete;
304 };
305 
306 #endif
adjust point positions using a windowed sinc function interpolation kernel
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
#define VTK_INT_MAX
Definition: vtkType.h:155
static vtkPolyDataAlgorithm * New()
int vtkTypeBool
Definition: vtkABI.h:69
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
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.