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

vtkElevationFilter.h

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