VTK  9.1.0
vtkTransformPolyDataFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTransformPolyDataFilter.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=========================================================================*/
146#ifndef vtkTransformPolyDataFilter_h
147#define vtkTransformPolyDataFilter_h
148
149#include "vtkFiltersGeneralModule.h" // For export macro
150#include "vtkPolyDataAlgorithm.h"
151
153
154class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
155{
156public:
159 void PrintSelf(ostream& os, vtkIndent indent) override;
160
165
167
171 vtkGetObjectMacro(Transform, vtkAbstractTransform);
173
175
180 vtkSetMacro(OutputPointsPrecision, int);
181 vtkGetMacro(OutputPointsPrecision, int);
183
184protected:
187
189
192
193private:
195 void operator=(const vtkTransformPolyDataFilter&) = delete;
196};
197
198#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition: vtkIndent.h:113
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
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkTransformPolyDataFilter * New()
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:47
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287