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 =========================================================================*/
43 #ifndef vtkElevationFilter_h
44 #define vtkElevationFilter_h
45 
46 #include "vtkFiltersCoreModule.h" // For export macro
47 #include "vtkDataSetAlgorithm.h"
48 
50 {
51 public:
52  static vtkElevationFilter* New();
54  void PrintSelf(ostream& os, vtkIndent indent);
55 
57 
59  vtkSetVector3Macro(LowPoint,double);
60  vtkGetVectorMacro(LowPoint,double,3);
62 
64 
66  vtkSetVector3Macro(HighPoint,double);
67  vtkGetVectorMacro(HighPoint,double,3);
69 
71 
72  vtkSetVector2Macro(ScalarRange,double);
73  vtkGetVectorMacro(ScalarRange,double,2);
75 
76 protected:
79 
83 
84  double LowPoint[3];
85  double HighPoint[3];
86  double ScalarRange[2];
87 
88 private:
89  vtkElevationFilter(const vtkElevationFilter&); // Not implemented.
90  void operator=(const vtkElevationFilter&); // Not implemented.
91 };
92 
93 #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()