VTK  9.2.5
vtkDeformPointSet.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDeformPointSet.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 =========================================================================*/
84 #ifndef vtkDeformPointSet_h
85 #define vtkDeformPointSet_h
86 
87 #include "vtkFiltersGeneralModule.h" // For export macro
88 #include "vtkPointSetAlgorithm.h"
89 
90 #include "vtkSmartPointer.h" // For protected ivars
91 
92 class vtkDoubleArray;
93 class vtkPolyData;
94 
95 class VTKFILTERSGENERAL_EXPORT vtkDeformPointSet : public vtkPointSetAlgorithm
96 {
97 public:
99 
104  void PrintSelf(ostream& os, vtkIndent indent) override;
106 
108 
112  void SetControlMeshData(vtkPolyData* controlMesh);
115 
121 
123 
131  vtkSetMacro(InitializeWeights, vtkTypeBool);
132  vtkGetMacro(InitializeWeights, vtkTypeBool);
133  vtkBooleanMacro(InitializeWeights, vtkTypeBool);
135 
136 protected:
138  ~vtkDeformPointSet() override;
139 
141 
142  // Keep track of information between execution passes
148 
150 
151 private:
152  vtkDeformPointSet(const vtkDeformPointSet&) = delete;
153  void operator=(const vtkDeformPointSet&) = delete;
154 };
155 
156 #endif
Proxy object to connect input/output ports.
use a control polyhedron to deform an input vtkPointSet
vtkTypeBool InitializeWeights
vtkIdType InitialNumberOfPointSetPoints
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkDeformPointSet * New()
Standard methods for instantiable (i.e., concrete) class.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiable (i.e., concrete) class.
vtkSmartPointer< vtkDoubleArray > Weights
~vtkDeformPointSet() override
vtkIdType InitialNumberOfControlMeshPoints
vtkIdType InitialNumberOfPointSetCells
vtkPolyData * GetControlMeshData()
Specify the control mesh to deform the input vtkPointSet.
vtkIdType InitialNumberOfControlMeshCells
void SetControlMeshData(vtkPolyData *controlMesh)
Specify the control mesh to deform the input vtkPointSet.
void SetControlMeshConnection(vtkAlgorithmOutput *algOutput)
Specify the point locations used to probe input.
dynamic, self-adjusting array of double
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.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332