VTK  9.3.20240420
vtkAppendPoints.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
19#ifndef vtkAppendPoints_h
20#define vtkAppendPoints_h
21
22#include "vtkFiltersGeneralModule.h" // For export macro
24
25VTK_ABI_NAMESPACE_BEGIN
26class VTKFILTERSGENERAL_EXPORT vtkAppendPoints : public vtkPolyDataAlgorithm
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
34
39 vtkSetStringMacro(InputIdArrayName);
40 vtkGetStringMacro(InputIdArrayName);
42
44
53 vtkSetMacro(OutputPointsPrecision, int);
54 vtkGetMacro(OutputPointsPrecision, int);
56
57protected:
59 ~vtkAppendPoints() override;
60
61 // Usual data generation method
64
67
68private:
69 vtkAppendPoints(const vtkAppendPoints&) = delete;
70 void operator=(const vtkAppendPoints&) = delete;
71};
72
73VTK_ABI_NAMESPACE_END
74#endif
appends points of one or more vtkPolyData data sets
static vtkAppendPoints * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
~vtkAppendPoints() override
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:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.