Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

Graphics/vtkElevationFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkElevationFilter.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00046 #ifndef __vtkElevationFilter_h
00047 #define __vtkElevationFilter_h
00048 
00049 #include "vtkDataSetToDataSetFilter.h"
00050 
00051 class VTK_GRAPHICS_EXPORT vtkElevationFilter : public vtkDataSetToDataSetFilter 
00052 {
00053 public:
00054   vtkTypeRevisionMacro(vtkElevationFilter,vtkDataSetToDataSetFilter);
00055   void PrintSelf(ostream& os, vtkIndent indent);
00056 
00059   static vtkElevationFilter *New();
00060 
00062 
00063   vtkSetVector3Macro(LowPoint,float);
00064   vtkGetVectorMacro(LowPoint,float,3);
00066 
00068 
00069   vtkSetVector3Macro(HighPoint,float);
00070   vtkGetVectorMacro(HighPoint,float,3);
00072 
00074 
00075   vtkSetVector2Macro(ScalarRange,float);
00076   vtkGetVectorMacro(ScalarRange,float,2);
00078 
00079 protected:
00080   vtkElevationFilter();
00081   ~vtkElevationFilter() {};
00082 
00083   void Execute();
00084   float LowPoint[3];
00085   float HighPoint[3];
00086   float ScalarRange[2];
00087 private:
00088   vtkElevationFilter(const vtkElevationFilter&);  // Not implemented.
00089   void operator=(const vtkElevationFilter&);  // Not implemented.
00090 };
00091 
00092 #endif
00093 
00094