VTK  9.2.6
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 =========================================================================*/
149 #ifndef vtkTransformPolyDataFilter_h
150 #define vtkTransformPolyDataFilter_h
151 
152 #include "vtkFiltersGeneralModule.h" // For export macro
153 #include "vtkPolyDataAlgorithm.h"
154 
156 
157 class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
158 {
159 public:
161 
167  void PrintSelf(ostream& os, vtkIndent indent) override;
169 
173  vtkMTimeType GetMTime() override;
174 
176 
180  vtkGetObjectMacro(Transform, vtkAbstractTransform);
182 
184 
189  vtkSetMacro(OutputPointsPrecision, int);
190  vtkGetMacro(OutputPointsPrecision, int);
192 
193 protected:
196 
198 
201 
202 private:
204  void operator=(const vtkTransformPolyDataFilter&) = delete;
205 };
206 
207 #endif
superclass for all geometric transformations
a simple class to control print indentation
Definition: vtkIndent.h:119
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:47
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287