VTK  9.3.0
vtkShrinkFilter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
33 #ifndef vtkShrinkFilter_h
34 #define vtkShrinkFilter_h
35 
36 #include "vtkFiltersGeneralModule.h" // For export macro
38 
39 VTK_ABI_NAMESPACE_BEGIN
40 class VTKFILTERSGENERAL_EXPORT vtkShrinkFilter : public vtkUnstructuredGridAlgorithm
41 {
42 public:
43  static vtkShrinkFilter* New();
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
48 
51  vtkSetClampMacro(ShrinkFactor, double, 0.0, 1.0);
52  vtkGetMacro(ShrinkFactor, double);
54 
55 protected:
57  ~vtkShrinkFilter() override;
58 
59  // Override to specify support for any vtkDataSet input type.
61 
62  // Main implementation.
64 
65  double ShrinkFactor;
66 
67 private:
68  vtkShrinkFilter(const vtkShrinkFilter&) = delete;
69  void operator=(const vtkShrinkFilter&) = delete;
70 };
71 
72 VTK_ABI_NAMESPACE_END
73 #endif
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
shrink cells composing an arbitrary data set
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkShrinkFilter * New()
~vtkShrinkFilter() override
Superclass for algorithms that produce only unstructured grid as output.
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447