VTK  9.3.0
vtkElevationFilter.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
32 #ifndef vtkElevationFilter_h
33 #define vtkElevationFilter_h
34 
35 #include "vtkDataSetAlgorithm.h"
36 #include "vtkFiltersCoreModule.h" // For export macro
37 
38 VTK_ABI_NAMESPACE_BEGIN
39 class VTKFILTERSCORE_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
51  vtkSetVector3Macro(LowPoint, double);
52  vtkGetVectorMacro(LowPoint, double, 3);
54 
56 
60  vtkSetVector3Macro(HighPoint, double);
61  vtkGetVectorMacro(HighPoint, double, 3);
63 
65 
68  vtkSetVector2Macro(ScalarRange, double);
69  vtkGetVectorMacro(ScalarRange, double, 2);
71 
72 protected:
74  ~vtkElevationFilter() override;
75 
77 
78  double LowPoint[3];
79  double HighPoint[3];
80  double ScalarRange[2];
81 
82 private:
83  vtkElevationFilter(const vtkElevationFilter&) = delete;
84  void operator=(const vtkElevationFilter&) = delete;
85 };
86 
87 VTK_ABI_NAMESPACE_END
88 #endif
Superclass for algorithms that produce output of the same type as input.
generate scalars along a specified direction
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkElevationFilter * New()
~vtkElevationFilter() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.