VTK
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 =========================================================================*/
31 #ifndef vtkElevationFilter_h
32 #define vtkElevationFilter_h
33 
34 #include "vtkFiltersCoreModule.h" // For export macro
35 #include "vtkDataSetAlgorithm.h"
36 
38 {
39 public:
40  static vtkElevationFilter* New();
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
47  vtkSetVector3Macro(LowPoint,double);
48  vtkGetVectorMacro(LowPoint,double,3);
50 
52 
54  vtkSetVector3Macro(HighPoint,double);
55  vtkGetVectorMacro(HighPoint,double,3);
57 
59 
60  vtkSetVector2Macro(ScalarRange,double);
61  vtkGetVectorMacro(ScalarRange,double,2);
63 
64 protected:
67 
71 
72  double LowPoint[3];
73  double HighPoint[3];
74  double ScalarRange[2];
75 private:
76  vtkElevationFilter(const vtkElevationFilter&); // Not implemented.
77  void operator=(const vtkElevationFilter&); // Not implemented.
78 };
79 
80 #endif
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
#define VTKFILTERSCORE_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()