VTK  9.2.6
vtkAppendFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAppendFilter.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 =========================================================================*/
108 #ifndef vtkAppendFilter_h
109 #define vtkAppendFilter_h
110 
111 #include "vtkFiltersCoreModule.h" // For export macro
113 
116 
117 class VTKFILTERSCORE_EXPORT vtkAppendFilter : public vtkUnstructuredGridAlgorithm
118 {
119 public:
120  static vtkAppendFilter* New();
122  void PrintSelf(ostream& os, vtkIndent indent) override;
123 
125 
128  vtkDataSet* GetInput(int idx);
129  vtkDataSet* GetInput() { return this->GetInput(0); }
131 
133 
138  vtkGetMacro(MergePoints, vtkTypeBool);
139  vtkSetMacro(MergePoints, vtkTypeBool);
140  vtkBooleanMacro(MergePoints, vtkTypeBool);
142 
144 
151  vtkSetClampMacro(Tolerance, double, 0.0, VTK_DOUBLE_MAX);
152  vtkGetMacro(Tolerance, double);
154 
156 
161  vtkSetMacro(ToleranceIsAbsolute, bool);
162  vtkGetMacro(ToleranceIsAbsolute, bool);
163  vtkBooleanMacro(ToleranceIsAbsolute, bool);
165 
170 
176 
178 
183  vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
184  vtkGetMacro(OutputPointsPrecision, int);
186 
187 protected:
189  ~vtkAppendFilter() override;
190 
191  // Usual data generation method
195 
196  // list of data sets to append together.
197  // Here as a convenience. It is a copy of the input array.
199 
200  // If true we will attempt to merge points. Must also not have
201  // ghost cells defined.
203 
205  double Tolerance;
206 
207  // If true, tolerance is used as is. If false, tolerance is multiplied by
208  // the diagonal of the bounding box of the input.
210 
211 private:
212  vtkAppendFilter(const vtkAppendFilter&) = delete;
213  void operator=(const vtkAppendFilter&) = delete;
214 
215  // Get all input data sets that have points, cells, or both.
216  // Caller must delete the returned vtkDataSetCollection.
217  vtkDataSetCollection* GetNonEmptyInputs(vtkInformationVector** inputVector);
218 
219  void AppendArrays(int attributesType, vtkInformationVector** inputVector, vtkIdType* globalIds,
220  vtkUnstructuredGrid* output, vtkIdType totalNumberOfElements);
221 };
222 
223 #endif
appends one or more datasets together into a single unstructured grid
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkDataSet * GetInput()
Get any input of this filter.
vtkDataSetCollection * GetInputList()
Returns a copy of the input array.
vtkDataSet * GetInput(int idx)
Get any input of this filter.
vtkDataSetCollection * InputList
void RemoveInputData(vtkDataSet *in)
Remove a dataset from the list of data to append.
vtkTypeBool MergePoints
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkAppendFilter() override
static vtkAppendFilter * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
represent and manipulate attribute data in a dataset
maintain an unordered list of dataset objects
abstract class to specify dataset behavior
Definition: vtkDataSet.h:172
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 only unstructured grid as output.
dataset represents arbitrary combinations of all possible cell types
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332
#define VTK_DOUBLE_MAX
Definition: vtkType.h:165