VTK  9.2.6
vtkWeightedTransformFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkWeightedTransformFilter.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=========================================================================*/
83#ifndef vtkWeightedTransformFilter_h
84#define vtkWeightedTransformFilter_h
85
86#include "vtkFiltersHybridModule.h" // For export macro
88
90
91class VTKFILTERSHYBRID_EXPORT vtkWeightedTransformFilter : public vtkPointSetAlgorithm
92{
93public:
96 void PrintSelf(ostream& os, vtkIndent indent) override;
97
102
104
113 vtkSetStringMacro(WeightArray);
114 vtkGetStringMacro(WeightArray);
116
118
134 vtkSetStringMacro(TransformIndexArray);
135 vtkGetStringMacro(TransformIndexArray);
137
139
146 vtkSetStringMacro(CellDataWeightArray);
147 vtkGetStringMacro(CellDataWeightArray);
149
151
155 vtkSetStringMacro(CellDataTransformIndexArray);
156 vtkGetStringMacro(CellDataTransformIndexArray);
158
160
166 virtual void SetTransform(vtkAbstractTransform* transform, int num);
169
171
177 virtual void SetNumberOfTransforms(int num);
178 vtkGetMacro(NumberOfTransforms, int);
180
182
187 vtkBooleanMacro(AddInputValues, vtkTypeBool);
188 vtkSetMacro(AddInputValues, vtkTypeBool);
189 vtkGetMacro(AddInputValues, vtkTypeBool);
191
192protected:
196
199
202
205
207
208private:
210 void operator=(const vtkWeightedTransformFilter&) = delete;
211};
212
213#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:49
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:69
vtkTypeUInt32 vtkMTimeType
Definition vtkType.h:287