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=========================================================================*/
39
40#ifndef vtkTransformPolyDataFilter_h
41#define vtkTransformPolyDataFilter_h
42
43#include "vtkFiltersGeneralModule.h" // For export macro
45
47
48class VTKFILTERSGENERAL_EXPORT vtkTransformPolyDataFilter : public vtkPolyDataAlgorithm
49{
50public:
52
58 void PrintSelf(ostream& os, vtkIndent indent) override;
60
65
67
71 vtkGetObjectMacro(Transform, vtkAbstractTransform);
73
75
80 vtkSetMacro(OutputPointsPrecision, int);
81 vtkGetMacro(OutputPointsPrecision, int);
83
84protected:
87
89
92
93private:
95 void operator=(const vtkTransformPolyDataFilter&) = delete;
96};
97
98#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
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:287