VTK  9.3.0
vtkTransformFilter.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
41 #ifndef vtkTransformFilter_h
42 #define vtkTransformFilter_h
43 
44 #include "vtkFiltersGeneralModule.h" // For export macro
45 #include "vtkPointSetAlgorithm.h"
46 
47 VTK_ABI_NAMESPACE_BEGIN
49 
50 class VTKFILTERSGENERAL_EXPORT vtkTransformFilter : public vtkPointSetAlgorithm
51 {
52 public:
54 
60  void PrintSelf(ostream& os, vtkIndent indent) override;
62 
66  vtkMTimeType GetMTime() override;
67 
69 
73  vtkGetObjectMacro(Transform, vtkAbstractTransform);
75 
77 
82  vtkSetMacro(OutputPointsPrecision, int);
83  vtkGetMacro(OutputPointsPrecision, int);
85 
87 
93  vtkSetMacro(TransformAllInputVectors, bool);
94  vtkGetMacro(TransformAllInputVectors, bool);
95  vtkBooleanMacro(TransformAllInputVectors, bool);
97 
98 protected:
101 
103  vtkInformationVector* outputVector) override;
105 
106  // Specifies that the filter only takes input dataset types of vtkPointSet, vtkImageData,
107  // and vtkRectilinearGrid.
109 
111 
115 
116 private:
117  vtkTransformFilter(const vtkTransformFilter&) = delete;
118  void operator=(const vtkTransformFilter&) = delete;
119 };
120 
121 VTK_ABI_NAMESPACE_END
122 #endif
superclass for all geometric transformations
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
a simple class to control print indentation
Definition: vtkIndent.h:38
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:41
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270