Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound 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 =========================================================================*/
00047 #ifndef __vtkElevationFilter_h
00048 #define __vtkElevationFilter_h
00049 
00050 #include "vtkDataSetToDataSetFilter.h"
00051 
00052 class VTK_GRAPHICS_EXPORT vtkElevationFilter : public vtkDataSetToDataSetFilter 
00053 {
00054 public:
00055   vtkTypeRevisionMacro(vtkElevationFilter,vtkDataSetToDataSetFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00060   static vtkElevationFilter *New();
00061 
00063 
00064   vtkSetVector3Macro(LowPoint,float);
00065   vtkGetVectorMacro(LowPoint,float,3);
00067 
00069 
00070   vtkSetVector3Macro(HighPoint,float);
00071   vtkGetVectorMacro(HighPoint,float,3);
00073 
00075 
00076   vtkSetVector2Macro(ScalarRange,float);
00077   vtkGetVectorMacro(ScalarRange,float,2);
00079 
00080 protected:
00081   vtkElevationFilter();
00082   ~vtkElevationFilter() {};
00083 
00084   void Execute();
00085   float LowPoint[3];
00086   float HighPoint[3];
00087   float ScalarRange[2];
00088 private:
00089   vtkElevationFilter(const vtkElevationFilter&);  // Not implemented.
00090   void operator=(const vtkElevationFilter&);  // Not implemented.
00091 };
00092 
00093 #endif
00094 
00095