VTK  9.2.5
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 =========================================================================*/
93 #ifndef vtkWeightedTransformFilter_h
94 #define vtkWeightedTransformFilter_h
95 
96 #include "vtkFiltersHybridModule.h" // For export macro
97 #include "vtkPointSetAlgorithm.h"
98 
100 
101 class VTKFILTERSHYBRID_EXPORT vtkWeightedTransformFilter : public vtkPointSetAlgorithm
102 {
103 public:
106  void PrintSelf(ostream& os, vtkIndent indent) override;
107 
111  vtkMTimeType GetMTime() override;
112 
114 
123  vtkSetStringMacro(WeightArray);
124  vtkGetStringMacro(WeightArray);
126 
128 
144  vtkSetStringMacro(TransformIndexArray);
145  vtkGetStringMacro(TransformIndexArray);
147 
149 
156  vtkSetStringMacro(CellDataWeightArray);
157  vtkGetStringMacro(CellDataWeightArray);
159 
161 
165  vtkSetStringMacro(CellDataTransformIndexArray);
166  vtkGetStringMacro(CellDataTransformIndexArray);
168 
170 
176  virtual void SetTransform(vtkAbstractTransform* transform, int num);
179 
181 
187  virtual void SetNumberOfTransforms(int num);
188  vtkGetMacro(NumberOfTransforms, int);
190 
192 
197  vtkBooleanMacro(AddInputValues, vtkTypeBool);
198  vtkSetMacro(AddInputValues, vtkTypeBool);
199  vtkGetMacro(AddInputValues, vtkTypeBool);
201 
202 protected:
206 
208  char* WeightArray;
209 
212 
215 
217 
218 private:
220  void operator=(const vtkWeightedTransformFilter&) = delete;
221 };
222 
223 #endif
superclass for all geometric transformations
a simple class to control print indentation
Definition: vtkIndent.h:119
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.
virtual vtkAbstractTransform * GetTransform(int num)
Set or Get one of the filter's transforms.
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 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