VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
vtkMergeDataObjectFilter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkMergeDataObjectFilter.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
=========================================================================*/
40
#ifndef __vtkMergeDataObjectFilter_h
41
#define __vtkMergeDataObjectFilter_h
42
43
#include "
vtkDataSetAlgorithm.h
"
44
45
class
VTK_GRAPHICS_EXPORT
vtkMergeDataObjectFilter
:
public
vtkDataSetAlgorithm
46
{
47
public
:
48
static
vtkMergeDataObjectFilter
*
New
();
49
vtkTypeMacro(
vtkMergeDataObjectFilter
,
vtkDataSetAlgorithm
);
50
void
PrintSelf
(ostream& os,
vtkIndent
indent);
51
53
54
void
SetDataObject(
vtkDataObject
*
object
);
55
vtkDataObject
*GetDataObject();
57
59
63
vtkSetMacro(OutputField,
int
);
64
vtkGetMacro(OutputField,
int
);
65
void
SetOutputFieldToDataObjectField();
66
void
SetOutputFieldToPointDataField();
67
void
SetOutputFieldToCellDataField();
69
70
protected
:
71
vtkMergeDataObjectFilter
();
72
~
vtkMergeDataObjectFilter
();
73
74
// Usual data generation method
75
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
76
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
77
78
int
OutputField
;
// which output field
79
80
private
:
81
vtkMergeDataObjectFilter
(
const
vtkMergeDataObjectFilter
&);
// Not implemented.
82
void
operator=(
const
vtkMergeDataObjectFilter
&);
// Not implemented.
83
};
84
85
#endif
86
87
Generated on Thu Mar 13 2014 08:10:02 for VTK by
1.8.1.2