VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Infovis
Core
vtkThresholdGraph.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkCollapseVerticesByArray.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
=========================================================================*/
23
#ifndef __vtkThresholdGraph_h
24
#define __vtkThresholdGraph_h
25
26
#include "vtkInfovisCoreModule.h"
// For export macro
27
#include "
vtkGraphAlgorithm.h
"
28
29
class
VTKINFOVISCORE_EXPORT
vtkThresholdGraph
:
public
vtkGraphAlgorithm
30
{
31
public
:
32
33
static
vtkThresholdGraph
*
New
();
34
vtkTypeMacro(
vtkThresholdGraph
,
vtkGraphAlgorithm
);
35
36
void
PrintSelf
(ostream &os,
vtkIndent
indent);
37
39
41
vtkGetMacro(LowerThreshold,
double
);
42
vtkSetMacro(LowerThreshold,
double
);
44
46
48
vtkGetMacro(UpperThreshold,
double
);
49
vtkSetMacro(UpperThreshold,
double
);
51
52
//BTX
53
protected
:
54
55
vtkThresholdGraph
();
56
~
vtkThresholdGraph
();
57
58
virtual
int
RequestData
(
vtkInformation
*,
59
vtkInformationVector
**,
60
vtkInformationVector
*);
61
62
63
private
:
64
65
double
LowerThreshold;
66
double
UpperThreshold;
67
68
69
vtkThresholdGraph
(
const
vtkThresholdGraph
&);
// Not implemented.
70
void
operator =(
const
vtkThresholdGraph
&);
// Not implemented.
71
//ETX
72
};
73
74
#endif // __vtkThresholdGraph_h
Generated on Thu May 24 2012 22:22:26 for VTK by
1.8.1