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
28#ifndef vtkTransformPolyDataFilter_h
29#define vtkTransformPolyDataFilter_h
30
31#include "vtkFiltersGeneralModule.h" // For export macro
33
34VTK_ABI_NAMESPACE_BEGIN
36
37class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
38{
39public:
41
47 void PrintSelf(ostream& os, vtkIndent indent) override;
49
54
56
60 vtkGetObjectMacro(Transform, vtkAbstractTransform);
62
64
69 vtkSetMacro(OutputPointsPrecision, int);
70 vtkGetMacro(OutputPointsPrecision, int);
72
73protected:
76
78
81
82private:
84 void operator=(const vtkTransformPolyDataFilter&) = delete;
85};
86
87VTK_ABI_NAMESPACE_END
88#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:29
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.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkTransformPolyDataFilter * New()
Standard methods for instantiation, obtaining type information, and printing.
virtual void SetTransform(vtkAbstractTransform *)
Specify the transform object used to transform points.
~vtkTransformPolyDataFilter() override
vtkMTimeType GetMTime() override
Return the MTime also considering the transform.
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:270