VTK  9.3.20240423
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
137#ifndef vtkTransformPolyDataFilter_h
138#define vtkTransformPolyDataFilter_h
139
140#include "vtkFiltersGeneralModule.h" // For export macro
141#include "vtkPolyDataAlgorithm.h"
142
143VTK_ABI_NAMESPACE_BEGIN
145
146class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
147{
148public:
150
156 void PrintSelf(ostream& os, vtkIndent indent) override;
158
163
165
169 vtkGetObjectMacro(Transform, vtkAbstractTransform);
171
173
178 vtkSetMacro(OutputPointsPrecision, int);
179 vtkGetMacro(OutputPointsPrecision, int);
181
182protected:
185
187
190
191private:
193 void operator=(const vtkTransformPolyDataFilter&) = delete;
194};
195
196VTK_ABI_NAMESPACE_END
197#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:108
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