VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkAppendPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAppendPoints.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 =========================================================================*/
27 #ifndef __vtkAppendPoints_h
28 #define __vtkAppendPoints_h
29 
30 #include "vtkFiltersGeneralModule.h" // For export macro
31 #include "vtkPolyDataAlgorithm.h"
32 
33 class VTKFILTERSGENERAL_EXPORT vtkAppendPoints : public vtkPolyDataAlgorithm
34 {
35 public:
36  static vtkAppendPoints *New();
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
45  vtkSetStringMacro(InputIdArrayName);
46  vtkGetStringMacro(InputIdArrayName);
48 
49 protected:
51  ~vtkAppendPoints();
52 
53  // Usual data generation method
54  virtual int RequestData(vtkInformation *,
55  vtkInformationVector **, vtkInformationVector *);
56  virtual int FillInputPortInformation(int, vtkInformation *);
57 
59 
60 private:
61  vtkAppendPoints(const vtkAppendPoints&); // Not implemented.
62  void operator=(const vtkAppendPoints&); // Not implemented.
63 };
64 
65 #endif
66 
67 
virtual int FillInputPortInformation(int port, vtkInformation *info)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
appends points of one or more vtkPolyData data sets