VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Infovis
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 "
vtkGraphAlgorithm.h
"
27
28
class
VTK_INFOVIS_EXPORT
vtkThresholdGraph
:
public
vtkGraphAlgorithm
29
{
30
public
:
31
32
static
vtkThresholdGraph
*
New
();
33
vtkTypeMacro(
vtkThresholdGraph
,
vtkGraphAlgorithm
);
34
35
void
PrintSelf
(ostream &os,
vtkIndent
indent);
36
38
40
vtkGetMacro(LowerThreshold,
double
);
41
vtkSetMacro(LowerThreshold,
double
);
43
45
47
vtkGetMacro(UpperThreshold,
double
);
48
vtkSetMacro(UpperThreshold,
double
);
50
51
//BTX
52
protected
:
53
54
vtkThresholdGraph
();
55
~
vtkThresholdGraph
();
56
57
virtual
int
RequestData
(
vtkInformation
*,
58
vtkInformationVector
**,
59
vtkInformationVector
*);
60
61
62
private
:
63
64
double
LowerThreshold;
65
double
UpperThreshold;
66
67
68
vtkThresholdGraph
(
const
vtkThresholdGraph
&);
// Not implemented.
69
void
operator =(
const
vtkThresholdGraph
&);
// Not implemented.
70
//ETX
71
};
72
73
#endif // __vtkThresholdGraph_h
Generated on Fri Aug 2 2013 12:19:59 for VTK by
1.8.4