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 "vtkDataSetAlgorithm.h"
35 
37 {
38 public:
39  static vtkElevationFilter* New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
46  vtkSetVector3Macro(LowPoint,double);
47  vtkGetVectorMacro(LowPoint,double,3);
49 
51 
53  vtkSetVector3Macro(HighPoint,double);
54  vtkGetVectorMacro(HighPoint,double,3);
56 
58 
59  vtkSetVector2Macro(ScalarRange,double);
60  vtkGetVectorMacro(ScalarRange,double,2);
62 
63 protected:
66 
70 
71  double LowPoint[3];
72  double HighPoint[3];
73  double ScalarRange[2];
74 private:
75  vtkElevationFilter(const vtkElevationFilter&); // Not implemented.
76  void operator=(const vtkElevationFilter&); // Not implemented.
77 };
78 
79 #endif
#define VTK_GRAPHICS_EXPORT
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
a simple class to control print indentation
Definition: vtkIndent.h:37
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()