VTK  9.1.0
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=========================================================================*/
80#ifndef vtkWeightedTransformFilter_h
81#define vtkWeightedTransformFilter_h
82
83#include "vtkFiltersHybridModule.h" // For export macro
85
87
88class VTKFILTERSHYBRID_EXPORT vtkWeightedTransformFilter : public vtkPointSetAlgorithm
89{
90public:
93 void PrintSelf(ostream& os, vtkIndent indent) override;
94
99
101
110 vtkSetStringMacro(WeightArray);
111 vtkGetStringMacro(WeightArray);
113
115
131 vtkSetStringMacro(TransformIndexArray);
132 vtkGetStringMacro(TransformIndexArray);
134
136
143 vtkSetStringMacro(CellDataWeightArray);
144 vtkGetStringMacro(CellDataWeightArray);
146
148
152 vtkSetStringMacro(CellDataTransformIndexArray);
153 vtkGetStringMacro(CellDataTransformIndexArray);
155
157
163 virtual void SetTransform(vtkAbstractTransform* transform, int num);
166
168
174 virtual void SetNumberOfTransforms(int num);
175 vtkGetMacro(NumberOfTransforms, int);
177
179
184 vtkBooleanMacro(AddInputValues, vtkTypeBool);
185 vtkSetMacro(AddInputValues, vtkTypeBool);
186 vtkGetMacro(AddInputValues, vtkTypeBool);
188
189protected:
193
196
199
202
204
205private:
207 void operator=(const vtkWeightedTransformFilter&) = delete;
208};
209
210#endif
superclass for all geometric transformations
a simple class to control print indentation
Definition: vtkIndent.h:43
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