VTK  9.2.5
vtkTransformFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTransformFilter.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 =========================================================================*/
133 #ifndef vtkTransformFilter_h
134 #define vtkTransformFilter_h
135 
136 #include "vtkFiltersGeneralModule.h" // For export macro
137 #include "vtkPointSetAlgorithm.h"
138 
140 
141 class VTKFILTERSGENERAL_EXPORT vtkTransformFilter : public vtkPointSetAlgorithm
142 {
143 public:
145 
151  void PrintSelf(ostream& os, vtkIndent indent) override;
153 
157  vtkMTimeType GetMTime() override;
158 
160 
164  vtkGetObjectMacro(Transform, vtkAbstractTransform);
166 
168 
173  vtkSetMacro(OutputPointsPrecision, int);
174  vtkGetMacro(OutputPointsPrecision, int);
176 
178 
184  vtkSetMacro(TransformAllInputVectors, bool);
185  vtkGetMacro(TransformAllInputVectors, bool);
186  vtkBooleanMacro(TransformAllInputVectors, bool);
188 
189 protected:
192 
194  vtkInformationVector* outputVector) override;
196 
197  // Specifies that the filter only takes input dataset types of vtkPointSet, vtkImageData,
198  // and vtkRectilinearGrid.
200 
202 
206 
207 private:
208  vtkTransformFilter(const vtkTransformFilter&) = delete;
209  void operator=(const vtkTransformFilter&) = delete;
210 };
211 
212 #endif
superclass for all geometric transformations
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:165
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 output of the same type as input.
transform points and associated normals and vectors
~vtkTransformFilter() override
vtkAbstractTransform * Transform
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkTransformFilter * New()
Standard methods for instantiation, obtaining type information, and printing.
int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing.
virtual void SetTransform(vtkAbstractTransform *)
Specify the transform object used to transform points.
vtkMTimeType GetMTime() override
Return the MTime also considering the transform.
vtkDataArray * CreateNewDataArray(vtkDataArray *input=nullptr)
@ Transform
Definition: vtkX3D.h:47
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287