VTK  9.2.5
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 =========================================================================*/
153 #ifndef vtkElevationFilter_h
154 #define vtkElevationFilter_h
155 
156 #include "vtkDataSetAlgorithm.h"
157 #include "vtkFiltersCoreModule.h" // For export macro
158 
159 class VTKFILTERSCORE_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
160 {
161 public:
164  void PrintSelf(ostream& os, vtkIndent indent) override;
165 
167 
171  vtkSetVector3Macro(LowPoint, double);
172  vtkGetVectorMacro(LowPoint, double, 3);
174 
176 
180  vtkSetVector3Macro(HighPoint, double);
181  vtkGetVectorMacro(HighPoint, double, 3);
183 
185 
188  vtkSetVector2Macro(ScalarRange, double);
189  vtkGetVectorMacro(ScalarRange, double, 2);
191 
192 protected:
195 
197 
198  double LowPoint[3];
199  double HighPoint[3];
200  double ScalarRange[2];
201 
202 private:
203  vtkElevationFilter(const vtkElevationFilter&) = delete;
204  void operator=(const vtkElevationFilter&) = delete;
205 };
206 
207 #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:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.