VTK
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 
29 {
30 public:
31 
32  static vtkThresholdGraph* New();
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 
56 
57  virtual int RequestData(vtkInformation*,
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