VTK
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 =========================================================================*/
65 #ifndef vtkDeformPointSet_h
66 #define vtkDeformPointSet_h
67 
68 #include "vtkFiltersGeneralModule.h" // For export macro
69 #include "vtkPointSetAlgorithm.h"
70 
71 #include "vtkSmartPointer.h" // For protected ivars
72 
73 class vtkDoubleArray;
74 class vtkPolyData;
75 
76 
77 class VTKFILTERSGENERAL_EXPORT vtkDeformPointSet : public vtkPointSetAlgorithm
78 {
79 public:
81 
86  void PrintSelf(ostream& os, vtkIndent indent) override;
88 
90 
94  void SetControlMeshData(vtkPolyData *controlMesh);
97 
103 
105 
113  vtkSetMacro(InitializeWeights, vtkTypeBool);
114  vtkGetMacro(InitializeWeights, vtkTypeBool);
115  vtkBooleanMacro(InitializeWeights, vtkTypeBool);
117 
118 protected:
120  ~vtkDeformPointSet() override;
121 
123 
124  // Keep track of information between execution passes
130 
132  vtkInformationVector *) override;
133 
134 private:
135  vtkDeformPointSet(const vtkDeformPointSet&) = delete;
136  void operator=(const vtkDeformPointSet&) = delete;
137 
138 };
139 
140 #endif
vtkDeformPointSet::SetControlMeshConnection
void SetControlMeshConnection(vtkAlgorithmOutput *algOutput)
Specify the point locations used to probe input.
vtkPointSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkPointSetAlgorithm.h:44
vtkIdType
int vtkIdType
Definition: vtkType.h:347
vtkDeformPointSet
use a control polyhedron to deform an input vtkPointSet
Definition: vtkDeformPointSet.h:78
vtkDeformPointSet::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkSmartPointer< vtkDoubleArray >
vtkPointSetAlgorithm.h
vtkDeformPointSet::InitializeWeights
vtkTypeBool InitializeWeights
Definition: vtkDeformPointSet.h:122
vtkDeformPointSet::~vtkDeformPointSet
~vtkDeformPointSet() override
vtkDeformPointSet::InitialNumberOfControlMeshCells
vtkIdType InitialNumberOfControlMeshCells
Definition: vtkDeformPointSet.h:126
vtkDeformPointSet::InitialNumberOfControlMeshPoints
vtkIdType InitialNumberOfControlMeshPoints
Definition: vtkDeformPointSet.h:125
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkDeformPointSet::vtkDeformPointSet
vtkDeformPointSet()
vtkSmartPointer.h
vtkDeformPointSet::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkDeformPointSet::SetControlMeshData
void SetControlMeshData(vtkPolyData *controlMesh)
Specify the control mesh to deform the input vtkPointSet.
vtkDeformPointSet::New
static vtkDeformPointSet * New()
Standard methods for instantiable (i.e., concrete) class.
vtkAlgorithmOutput
Proxy object to connect input/output ports.
Definition: vtkAlgorithmOutput.h:40
vtkDeformPointSet::GetControlMeshData
vtkPolyData * GetControlMeshData()
vtkPolyData
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:86
vtkDeformPointSet::InitialNumberOfPointSetPoints
vtkIdType InitialNumberOfPointSetPoints
Definition: vtkDeformPointSet.h:127
vtkDoubleArray
dynamic, self-adjusting array of double
Definition: vtkDoubleArray.h:42
vtkDeformPointSet::Weights
vtkSmartPointer< vtkDoubleArray > Weights
Definition: vtkDeformPointSet.h:129
vtkDeformPointSet::InitialNumberOfPointSetCells
vtkIdType InitialNumberOfPointSetCells
Definition: vtkDeformPointSet.h:128
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69