VTK  9.5.2
vtkAppendFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
26
27#ifndef vtkAppendFilter_h
28#define vtkAppendFilter_h
29
30#include "vtkFiltersCoreModule.h" // For export macro
32
33#include <vector> // For std::vector
34
35VTK_ABI_NAMESPACE_BEGIN
38
39class VTKFILTERSCORE_EXPORT vtkAppendFilter : public vtkUnstructuredGridAlgorithm
40{
41public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
47
51 vtkDataSet* GetInput() { return this->GetInput(0); }
53
55
60 vtkGetMacro(MergePoints, vtkTypeBool);
61 vtkSetMacro(MergePoints, vtkTypeBool);
62 vtkBooleanMacro(MergePoints, vtkTypeBool);
64
66
73 vtkSetClampMacro(Tolerance, double, 0.0, VTK_DOUBLE_MAX);
74 vtkGetMacro(Tolerance, double);
76
78
83 vtkSetMacro(ToleranceIsAbsolute, bool);
84 vtkGetMacro(ToleranceIsAbsolute, bool);
85 vtkBooleanMacro(ToleranceIsAbsolute, bool);
87
92
98
100
106 vtkGetMacro(OutputPointsPrecision, int);
108
109protected:
112
113 // Usual data generation method
116 int FillInputPortInformation(int port, vtkInformation* info) override;
117
118 // list of data sets to append together.
119 // Here as a convenience. It is a copy of the input array.
121
122 // If true we will attempt to merge points. Must also not have
123 // ghost cells defined.
125
127 double Tolerance;
128
129 // If true, tolerance is used as is. If false, tolerance is multiplied by
130 // the diagonal of the bounding box of the input.
132
133private:
134 vtkAppendFilter(const vtkAppendFilter&) = delete;
135 void operator=(const vtkAppendFilter&) = delete;
136
137 // Get all input data sets that have points, cells, or both.
138 // Caller must delete the returned vtkDataSetCollection.
139 std::vector<vtkSmartPointer<vtkDataSet>> GetNonEmptyInputs(vtkInformationVector** inputVector);
140
141 void AppendArrays(int attributesType, vtkInformationVector** inputVector,
142 vtkUnstructuredGrid* output, vtkIdType totalNumberOfElements);
143};
144
145VTK_ABI_NAMESPACE_END
146#endif
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkDataSetCollection * InputList
void RemoveInputData(vtkDataSet *in)
Remove a dataset from the list of data to append.
vtkDataSet * GetInput()
Get any input of this filter.
vtkTypeBool MergePoints
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkAppendFilter() override
static vtkAppendFilter * New()
vtkDataSetCollection * GetInputList()
Returns a copy of the input array.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkDataSet * GetInput(int idx)
Get any input of this filter.
int FillInputPortInformation(int port, vtkInformation *info) override
represent and manipulate attribute data in a dataset
maintain an unordered list of dataset objects
abstract class to specify dataset behavior
Definition vtkDataSet.h:56
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
dataset represents arbitrary combinations of all possible cell types
int vtkTypeBool
Definition vtkABI.h:64
int vtkIdType
Definition vtkType.h:332
#define VTK_DOUBLE_MAX
Definition vtkType.h:171