VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Infovis
vtkStreamGraph.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkStreamGraph.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
=========================================================================*/
15
/*-------------------------------------------------------------------------
16
Copyright 2008 Sandia Corporation.
17
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18
the U.S. Government retains certain rights in this software.
19
-------------------------------------------------------------------------*/
41
#ifndef __vtkStreamGraph_h
42
#define __vtkStreamGraph_h
43
44
#include "
vtkGraphAlgorithm.h
"
45
46
class
vtkBitArray
;
47
class
vtkMergeGraphs
;
48
class
vtkMutableDirectedGraph
;
49
class
vtkMutableGraphHelper
;
50
class
vtkStringArray
;
51
class
vtkTable
;
52
53
class
VTK_INFOVIS_EXPORT
vtkStreamGraph
:
public
vtkGraphAlgorithm
54
{
55
public
:
56
static
vtkStreamGraph
*
New
();
57
vtkTypeMacro(
vtkStreamGraph
,
vtkGraphAlgorithm
);
58
void
PrintSelf
(ostream& os,
vtkIndent
indent);
59
61
63
vtkSetMacro(UseEdgeWindow,
bool
);
64
vtkGetMacro(UseEdgeWindow,
bool
);
65
vtkBooleanMacro(UseEdgeWindow,
bool
);
67
69
70
vtkSetStringMacro(EdgeWindowArrayName);
71
vtkGetStringMacro(EdgeWindowArrayName);
73
75
78
vtkSetMacro(EdgeWindow,
double
);
79
vtkGetMacro(EdgeWindow,
double
);
81
82
protected
:
83
vtkStreamGraph
();
84
~
vtkStreamGraph
();
85
86
virtual
int
RequestData
(
87
vtkInformation
*,
88
vtkInformationVector
**,
89
vtkInformationVector
*);
90
91
vtkMutableGraphHelper
*
CurrentGraph
;
92
vtkMergeGraphs
*
MergeGraphs
;
93
bool
UseEdgeWindow
;
94
double
EdgeWindow
;
95
char
*
EdgeWindowArrayName
;
96
97
private
:
98
vtkStreamGraph
(
const
vtkStreamGraph
&);
// Not implemented
99
void
operator=(
const
vtkStreamGraph
&);
// Not implemented
100
};
101
102
#endif
103
Generated on Fri Aug 2 2013 12:19:59 for VTK by
1.8.4