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

Graphics/vtkSimpleElevationFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkSimpleElevationFilter.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 =========================================================================*/
00045 #ifndef __vtkSimpleElevationFilter_h
00046 #define __vtkSimpleElevationFilter_h
00047 
00048 #include "vtkDataSetToDataSetFilter.h"
00049 
00050 class VTK_GRAPHICS_EXPORT vtkSimpleElevationFilter : public vtkDataSetToDataSetFilter 
00051 {
00052 public:
00053   vtkTypeRevisionMacro(vtkSimpleElevationFilter,vtkDataSetToDataSetFilter);
00054   void PrintSelf(ostream& os, vtkIndent indent);
00055 
00057   static vtkSimpleElevationFilter *New();
00058 
00060 
00061   vtkSetVector3Macro(Vector,float);
00062   vtkGetVectorMacro(Vector,float,3);
00064 
00065 protected:
00066   vtkSimpleElevationFilter();
00067   ~vtkSimpleElevationFilter() {};
00068 
00069   void Execute();
00070   float Vector[3];
00071 private:
00072   vtkSimpleElevationFilter(const vtkSimpleElevationFilter&);  // Not implemented.
00073   void operator=(const vtkSimpleElevationFilter&);  // Not implemented.
00074 };
00075 
00076 #endif
00077 
00078