VTK  9.0.1
vtkElevationFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkElevationFilter.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 =========================================================================*/
38 #ifndef vtkElevationFilter_h
39 #define vtkElevationFilter_h
40 
41 #include "vtkDataSetAlgorithm.h"
42 #include "vtkFiltersCoreModule.h" // For export macro
43 
44 class VTKFILTERSCORE_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
45 {
46 public:
47  static vtkElevationFilter* New();
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
56  vtkSetVector3Macro(LowPoint, double);
57  vtkGetVectorMacro(LowPoint, double, 3);
59 
61 
65  vtkSetVector3Macro(HighPoint, double);
66  vtkGetVectorMacro(HighPoint, double, 3);
68 
70 
73  vtkSetVector2Macro(ScalarRange, double);
74  vtkGetVectorMacro(ScalarRange, double, 2);
76 
77 protected:
79  ~vtkElevationFilter() override;
80 
82 
83  double LowPoint[3];
84  double HighPoint[3];
85  double ScalarRange[2];
86 
87 private:
88  vtkElevationFilter(const vtkElevationFilter&) = delete;
89  void operator=(const vtkElevationFilter&) = delete;
90 };
91 
92 #endif
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
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:33
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()