VTK  9.3.0
vtkWeightedTransformFilter.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
62#ifndef vtkWeightedTransformFilter_h
63#define vtkWeightedTransformFilter_h
64
65#include "vtkFiltersHybridModule.h" // For export macro
67
68VTK_ABI_NAMESPACE_BEGIN
70
71class VTKFILTERSHYBRID_EXPORT vtkWeightedTransformFilter : public vtkPointSetAlgorithm
72{
73public:
76 void PrintSelf(ostream& os, vtkIndent indent) override;
77
82
84
93 vtkSetStringMacro(WeightArray);
94 vtkGetStringMacro(WeightArray);
96
98
114 vtkSetStringMacro(TransformIndexArray);
115 vtkGetStringMacro(TransformIndexArray);
117
119
126 vtkSetStringMacro(CellDataWeightArray);
127 vtkGetStringMacro(CellDataWeightArray);
129
131
135 vtkSetStringMacro(CellDataTransformIndexArray);
136 vtkGetStringMacro(CellDataTransformIndexArray);
138
140
146 virtual void SetTransform(vtkAbstractTransform* transform, int num);
149
151
157 virtual void SetNumberOfTransforms(int num);
158 vtkGetMacro(NumberOfTransforms, int);
160
162
167 vtkBooleanMacro(AddInputValues, vtkTypeBool);
168 vtkSetMacro(AddInputValues, vtkTypeBool);
169 vtkGetMacro(AddInputValues, vtkTypeBool);
171
172protected:
176
179
182
185
187
188private:
190 void operator=(const vtkWeightedTransformFilter&) = delete;
191};
192
193VTK_ABI_NAMESPACE_END
194#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.
transform based on per-point or per-cell weighting functions.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkWeightedTransformFilter * New()
vtkMTimeType GetMTime() override
Return the MTime also considering the filter's transforms.
~vtkWeightedTransformFilter() override
virtual vtkAbstractTransform * GetTransform(int num)
Set or Get one of the filter's transforms.
virtual void SetTransform(vtkAbstractTransform *transform, int num)
Set or Get one of the filter's transforms.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
virtual void SetNumberOfTransforms(int num)
Set the number of transforms for the filter.
int vtkTypeBool
Definition vtkABI.h:64
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:270