VTK
vtkMergeFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMergeFilter.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 =========================================================================*/
31 #ifndef vtkMergeFilter_h
32 #define vtkMergeFilter_h
33 
34 #include "vtkFiltersCoreModule.h" // For export macro
35 #include "vtkDataSetAlgorithm.h"
36 
37 class vtkFieldList;
38 
39 class VTKFILTERSCORE_EXPORT vtkMergeFilter : public vtkDataSetAlgorithm
40 {
41 public:
42  static vtkMergeFilter *New();
44  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45 
47 
53  void SetGeometryInputData(vtkDataSet *input) {this->SetInputData(input);};
54  vtkDataSet *GetGeometry();
56 
62  {
63  this->SetInputConnection(algOutput);
64  }
65 
67 
73  void SetScalarsData(vtkDataSet *);
74  vtkDataSet *GetScalars();
76 
82  {
83  this->SetInputConnection(1, algOutput);
84  }
85 
87 
93  void SetVectorsData(vtkDataSet *);
94  vtkDataSet *GetVectors();
96 
102  {
103  this->SetInputConnection(2, algOutput);
104  }
105 
107 
113  void SetNormalsData(vtkDataSet *);
114  vtkDataSet *GetNormals();
116 
122  {
123  this->SetInputConnection(3, algOutput);
124  }
125 
127 
134  void SetTCoordsData(vtkDataSet *);
135  vtkDataSet *GetTCoords();
137 
144  {
145  this->SetInputConnection(4, algOutput);
146  }
147 
149 
155  void SetTensorsData(vtkDataSet *);
156  vtkDataSet *GetTensors();
158 
164  {
165  this->SetInputConnection(5, algOutput);
166  }
167 
173  void AddField(const char* name, vtkDataSet* input);
174 
175 protected:
176  vtkMergeFilter();
177  ~vtkMergeFilter() VTK_OVERRIDE;
178 
179  // Usual data generation method
180  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
181  int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
182  int FillInputPortInformation(int port, vtkInformation *info) VTK_OVERRIDE;
183 
184  vtkFieldList* FieldList;
185 private:
186  vtkMergeFilter(const vtkMergeFilter&) VTK_DELETE_FUNCTION;
187  void operator=(const vtkMergeFilter&) VTK_DELETE_FUNCTION;
188 };
189 
190 #endif
191 
192 
void SetScalarsConnection(vtkAlgorithmOutput *algOutput)
Specify object from which to extract scalar information.
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
void SetInputData(vtkDataObject *)
Assign a data object as input.
void SetNormalsConnection(vtkAlgorithmOutput *algOutput)
Set the connection from which to extract normal information.
Proxy object to connect input/output ports.
void SetVectorsConnection(vtkAlgorithmOutput *algOutput)
Set the connection from which to extract vector information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void SetInputConnection(int port, vtkAlgorithmOutput *input)
Set the connection for the given input port index.
extract separate components of data from different datasets
void SetTCoordsConnection(vtkAlgorithmOutput *algOutput)
Set the connection from which to extract texture coordinates information.
void SetTensorsConnection(vtkAlgorithmOutput *algOutput)
Set the connection from which to extract tensor data.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
void SetGeometryConnection(vtkAlgorithmOutput *algOutput)
Specify object from which to extract geometry information.
static vtkDataSetAlgorithm * New()
void SetGeometryInputData(vtkDataSet *input)
Specify object from which to extract geometry information.