VTK  9.3.0
vtkTransformPolyDataFilter.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
37 #ifndef vtkTransformPolyDataFilter_h
38 #define vtkTransformPolyDataFilter_h
39 
40 #include "vtkFiltersGeneralModule.h" // For export macro
41 #include "vtkPolyDataAlgorithm.h"
42 
43 VTK_ABI_NAMESPACE_BEGIN
45 
46 class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
47 {
48 public:
50 
56  void PrintSelf(ostream& os, vtkIndent indent) override;
58 
62  vtkMTimeType GetMTime() override;
63 
65 
69  vtkGetObjectMacro(Transform, vtkAbstractTransform);
71 
73 
78  vtkSetMacro(OutputPointsPrecision, int);
79  vtkGetMacro(OutputPointsPrecision, int);
81 
82 protected:
85 
87 
90 
91 private:
93  void operator=(const vtkTransformPolyDataFilter&) = delete;
94 };
95 
96 VTK_ABI_NAMESPACE_END
97 #endif
superclass for all geometric transformations
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
transform points and associated normals and vectors for polygonal dataset
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing.
static vtkTransformPolyDataFilter * New()
Standard methods for instantiation, obtaining type information, and printing.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
virtual void SetTransform(vtkAbstractTransform *)
Specify the transform object used to transform points.
~vtkTransformPolyDataFilter() override
vtkMTimeType GetMTime() override
Return the MTime also considering the transform.
@ Transform
Definition: vtkX3D.h:41
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270