VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
37 class VTKFILTERSCORE_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
38 {
39 public:
40  static vtkElevationFilter* New();
41  vtkTypeMacro(vtkElevationFilter, vtkDataSetAlgorithm);
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 
68  int RequestData(vtkInformation*,
69  vtkInformationVector**,
70  vtkInformationVector*);
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
generate scalars along a specified direction