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=========================================================================*/
71#ifndef vtkWeightedTransformFilter_h
72#define vtkWeightedTransformFilter_h
73
74#include "vtkFiltersHybridModule.h" // For export macro
76
78
79class VTKFILTERSHYBRID_EXPORT vtkWeightedTransformFilter : public vtkPointSetAlgorithm
80{
81public:
84 void PrintSelf(ostream& os, vtkIndent indent) override;
85
90
92
101 vtkSetStringMacro(WeightArray);
102 vtkGetStringMacro(WeightArray);
104
106
122 vtkSetStringMacro(TransformIndexArray);
123 vtkGetStringMacro(TransformIndexArray);
125
127
134 vtkSetStringMacro(CellDataWeightArray);
135 vtkGetStringMacro(CellDataWeightArray);
137
139
143 vtkSetStringMacro(CellDataTransformIndexArray);
144 vtkGetStringMacro(CellDataTransformIndexArray);
146
148
154 virtual void SetTransform(vtkAbstractTransform* transform, int num);
157
159
165 virtual void SetNumberOfTransforms(int num);
166 vtkGetMacro(NumberOfTransforms, int);
168
170
175 vtkBooleanMacro(AddInputValues, vtkTypeBool);
176 vtkSetMacro(AddInputValues, vtkTypeBool);
177 vtkGetMacro(AddInputValues, vtkTypeBool);
179
180protected:
184
187
190
193
195
196private:
198 void operator=(const vtkWeightedTransformFilter&) = delete;
199};
200
201#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition vtkIndent.h:34
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