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 =========================================================================*/
30 #ifndef vtkAppendPoints_h
31 #define vtkAppendPoints_h
32 
33 #include "vtkFiltersGeneralModule.h" // For export macro
34 #include "vtkPolyDataAlgorithm.h"
35 
37 {
38 public:
39  static vtkAppendPoints *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
48  vtkSetStringMacro(InputIdArrayName);
49  vtkGetStringMacro(InputIdArrayName);
51 
53 
61  vtkSetMacro(OutputPointsPrecision,int);
62  vtkGetMacro(OutputPointsPrecision,int);
64 
65 protected:
67  ~vtkAppendPoints();
68 
69  // Usual data generation method
70  virtual int RequestData(vtkInformation *,
72  virtual int FillInputPortInformation(int, vtkInformation *);
73 
76 private:
77  vtkAppendPoints(const vtkAppendPoints&); // Not implemented.
78  void operator=(const vtkAppendPoints&); // Not implemented.
79 };
80 
81 #endif
82 
83 
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:38
#define VTKFILTERSGENERAL_EXPORT
appends points of one or more vtkPolyData data sets
Store zero or more vtkInformation instances.