VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
vtkAppendCompositeDataLeaves.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkAppendCompositeDataLeaves.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
=========================================================================*/
35
#ifndef __vtkAppendCompositeDataLeaves_h
36
#define __vtkAppendCompositeDataLeaves_h
37
38
#include "
vtkCompositeDataSetAlgorithm.h
"
39
40
class
vtkAppendFilter
;
41
class
vtkAppendPolyData
;
42
class
vtkCompositeDataIterator
;
43
class
vtkDataSet
;
44
class
vtkPolyData
;
45
class
vtkUnstructuredGrid
;
46
47
class
VTK_GRAPHICS_EXPORT
vtkAppendCompositeDataLeaves
:
public
vtkCompositeDataSetAlgorithm
48
{
49
public
:
50
static
vtkAppendCompositeDataLeaves
*
New
();
51
52
vtkTypeMacro(
vtkAppendCompositeDataLeaves
,
vtkCompositeDataSetAlgorithm
);
53
void
PrintSelf
( ostream& os,
vtkIndent
indent );
54
55
//BTX
57
58
vtkCompositeDataSet
*
GetInput
(
int
idx );
59
vtkCompositeDataSet
*
GetInput
()
60
{
return
this->
GetInput
( 0 ); }
61
//ETX
63
65
void
RemoveInput(
vtkDataSet
* in );
66
68
73
vtkSetMacro(AppendFieldData,
int
);
74
vtkGetMacro(AppendFieldData,
int
);
75
vtkBooleanMacro(AppendFieldData,
int
);
77
78
protected
:
79
vtkAppendCompositeDataLeaves
();
80
~
vtkAppendCompositeDataLeaves
();
81
84
virtual
int
RequestDataObject
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
* );
85
87
virtual
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
* );
88
90
virtual
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
91
94
virtual
void
AppendUnstructuredGrids(
int
i,
int
numInputs,
vtkCompositeDataIterator
* iter,
vtkCompositeDataSet
* output );
95
98
virtual
void
AppendPolyData(
int
i,
int
numInputs,
vtkCompositeDataIterator
* iter,
vtkCompositeDataSet
* output );
99
104
virtual
void
AppendFieldDataArrays(
int
i,
int
numInputs,
vtkCompositeDataIterator
* iter,
vtkDataSet
* dset );
105
106
int
AppendFieldData
;
107
vtkAppendFilter
*
AppendUG
;
108
vtkAppendPolyData
*
AppendPD
;
109
110
private
:
111
vtkAppendCompositeDataLeaves
(
const
vtkAppendCompositeDataLeaves
& );
// Not implemented.
112
void
operator = (
const
vtkAppendCompositeDataLeaves
& );
// Not implemented.
113
};
114
115
#endif // __vtkAppendCompositeDataLeaves_h
Generated on Thu Mar 13 2014 08:09:59 for VTK by
1.8.1.2