VTK  9.3.20240420
vtkThresholdGraph.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
12#ifndef vtkThresholdGraph_h
13#define vtkThresholdGraph_h
14
15#include "vtkGraphAlgorithm.h"
16#include "vtkInfovisCoreModule.h" // For export macro
17
18VTK_ABI_NAMESPACE_BEGIN
19class VTKINFOVISCORE_EXPORT vtkThresholdGraph : public vtkGraphAlgorithm
20{
21public:
24
25 void PrintSelf(ostream& os, vtkIndent indent) override;
26
28
32 vtkGetMacro(LowerThreshold, double);
33 vtkSetMacro(LowerThreshold, double);
35
37
41 vtkGetMacro(UpperThreshold, double);
42 vtkSetMacro(UpperThreshold, double);
44
45protected:
48
50
51private:
52 double LowerThreshold;
53 double UpperThreshold;
54
55 vtkThresholdGraph(const vtkThresholdGraph&) = delete;
56 void operator=(const vtkThresholdGraph&) = delete;
57};
58
59VTK_ABI_NAMESPACE_END
60#endif // vtkThresholdGraph_h
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Returns a subgraph of a vtkGraph.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkThresholdGraph() override
static vtkThresholdGraph * New()