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:
68 
69  // Usual data generation method
70  virtual int RequestData(vtkInformation *,
73 
76 private:
77  vtkAppendPoints(const vtkAppendPoints&); // Not implemented.
78  void operator=(const vtkAppendPoints&); // Not implemented.
79 };
80 
81 #endif
82 
83 
vtkAppendPoints::InputIdArrayName
char * InputIdArrayName
Definition: vtkAppendPoints.h:74
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkAppendPoints::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkAppendPoints::~vtkAppendPoints
~vtkAppendPoints()
vtkAppendPoints::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkAppendPoints::New
static vtkAppendPoints * New()
vtkPolyDataAlgorithm.h
vtkFiltersGeneralModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetStringMacro
#define vtkSetStringMacro(name)
Definition: vtkSetGet.h:104
vtkAppendPoints::OutputPointsPrecision
int OutputPointsPrecision
Definition: vtkAppendPoints.h:75
VTKFILTERSGENERAL_EXPORT
#define VTKFILTERSGENERAL_EXPORT
Definition: vtkFiltersGeneralModule.h:15
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
vtkAppendPoints::vtkAppendPoints
vtkAppendPoints()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkAppendPoints
appends points of one or more vtkPolyData data sets
Definition: vtkAppendPoints.h:37
vtkAppendPoints::FillInputPortInformation
virtual int FillInputPortInformation(int, vtkInformation *)
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44