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=========================================================================*/
161
162#ifndef vtkWindowedSincPolyDataFilter_h
163#define vtkWindowedSincPolyDataFilter_h
164
165#include "vtkFiltersCoreModule.h" // For export macro
166#include "vtkPolyDataAlgorithm.h"
167
168class VTKFILTERSCORE_EXPORT vtkWindowedSincPolyDataFilter : public vtkPolyDataAlgorithm
169{
170public:
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
213
215
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
252
254
262
264
271
273
280
281protected:
283 ~vtkWindowedSincPolyDataFilter() override = default;
284
286
288 double PassBand;
289
291
294 double EdgeAngle;
297
300
301private:
303 void operator=(const vtkWindowedSincPolyDataFilter&) = delete;
304};
305
306#endif
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
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