VTK  9.1.0
vtkAppendPolyData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAppendPolyData.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 =========================================================================*/
36 #ifndef vtkAppendPolyData_h
37 #define vtkAppendPolyData_h
38 
39 #include "vtkFiltersCoreModule.h" // For export macro
40 #include "vtkPolyDataAlgorithm.h"
41 
42 class vtkCellArray;
43 class vtkDataArray;
44 class vtkPoints;
45 class vtkPolyData;
46 
47 class VTKFILTERSCORE_EXPORT vtkAppendPolyData : public vtkPolyDataAlgorithm
48 {
49 public:
51 
53  void PrintSelf(ostream& os, vtkIndent indent) override;
54 
56 
62  vtkSetMacro(UserManagedInputs, vtkTypeBool);
63  vtkGetMacro(UserManagedInputs, vtkTypeBool);
64  vtkBooleanMacro(UserManagedInputs, vtkTypeBool);
66 
72 
78 
80 
83  vtkPolyData* GetInput(int idx);
84  vtkPolyData* GetInput() { return this->GetInput(0); }
86 
91  void SetNumberOfInputs(int num);
92 
93  // Set Nth input, should only be used when UserManagedInputs is true.
95  void SetInputDataByNumber(int num, vtkPolyData* ds);
96 
98 
108  vtkSetMacro(ParallelStreaming, vtkTypeBool);
109  vtkGetMacro(ParallelStreaming, vtkTypeBool);
110  vtkBooleanMacro(ParallelStreaming, vtkTypeBool);
112 
114 
119  vtkSetMacro(OutputPointsPrecision, int);
120  vtkGetMacro(OutputPointsPrecision, int);
122 
123  int ExecuteAppend(vtkPolyData* output, vtkPolyData* inputs[], int numInputs)
124  VTK_SIZEHINT(inputs, numInputs);
125 
126 protected:
128  ~vtkAppendPolyData() override;
129 
130  // Flag for selecting parallel streaming behavior
133 
134  // Usual data generation method
138 
139  // An efficient templated way to append data.
141 
142  // An efficient way to append cells.
144 
145 private:
146  // hide the superclass' AddInput() from the user and the compiler
148  {
149  vtkErrorMacro(<< "AddInput() must be called with a vtkPolyData not a vtkDataObject.");
150  }
151 
152  vtkTypeBool UserManagedInputs;
153 
154 private:
155  vtkAppendPolyData(const vtkAppendPolyData&) = delete;
156  void operator=(const vtkAppendPolyData&) = delete;
157 };
158 
159 #endif
Proxy object to connect input/output ports.
appends one or more polygonal datasets together
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void AddInputData(vtkPolyData *)
Add a dataset to the list of data to append.
void RemoveInputData(vtkPolyData *)
Remove a dataset from the list of data to append.
vtkPolyData * GetInput(int idx)
Get any input of this filter.
~vtkAppendPolyData() override
vtkTypeBool ParallelStreaming
int ExecuteAppend(vtkPolyData *output, vtkPolyData *inputs[], int numInputs)
static vtkAppendPolyData * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void AppendCells(vtkCellArray *dst, vtkCellArray *src, vtkIdType offset)
void AppendData(vtkDataArray *dest, vtkDataArray *src, vtkIdType offset)
vtkPolyData * GetInput()
Get any input of this filter.
void SetInputConnectionByNumber(int num, vtkAlgorithmOutput *input)
void SetNumberOfInputs(int num)
Directly set(allocate) number of inputs, should only be used when UserManagedInputs is true.
void SetInputDataByNumber(int num, vtkPolyData *ds)
object to represent cell connectivity
Definition: vtkCellArray.h:181
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
general representation of visualization data
Definition: vtkDataObject.h:60
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition: vtkPoints.h:34
Superclass for algorithms that produce only polydata as output.
void AddInputData(vtkDataObject *)
Assign a data object as input.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:86
@ offset
Definition: vtkX3D.h:444
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332
#define VTK_SIZEHINT(...)