VTK
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 "vtkPolyDataAlgorithm.h"
31 
33 {
34 public:
35  static vtkAppendPoints *New();
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40 
44  vtkSetStringMacro(InputIdArrayName);
45  vtkGetStringMacro(InputIdArrayName);
47 
48 protected:
50  ~vtkAppendPoints();
51 
52  // Usual data generation method
53  virtual int RequestData(vtkInformation *,
55  virtual int FillInputPortInformation(int, vtkInformation *);
56 
58 
59 private:
60  vtkAppendPoints(const vtkAppendPoints&); // Not implemented.
61  void operator=(const vtkAppendPoints&); // Not implemented.
62 };
63 
64 #endif
65 
66 
virtual int FillInputPortInformation(int port, vtkInformation *info)
Store vtkAlgorithm input/output information.
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.
a simple class to control print indentation
Definition: vtkIndent.h:37
#define VTK_INFOVIS_EXPORT
appends points of one or more vtkPolyData data sets
Store zero or more vtkInformation instances.