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 "vtkInfovisCoreModule.h" // For export macro
27 #include "vtkGraphAlgorithm.h"
28 
30 {
31 public:
32 
33  static vtkThresholdGraph* New();
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 
57 
58  virtual int RequestData(vtkInformation*,
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
static vtkGraphAlgorithm * New()
Store vtkAlgorithm input/output information.
Returns a subgraph of a vtkGraph.
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
void PrintSelf(ostream &os, vtkIndent indent)
#define VTKINFOVISCORE_EXPORT
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Store zero or more vtkInformation instances.