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

dox/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 =========================================================================*/ 00035 #ifndef __vtkElevationFilter_h 00036 #define __vtkElevationFilter_h 00037 00038 #include "vtkDataSetToDataSetFilter.h" 00039 00040 class VTK_GRAPHICS_EXPORT vtkElevationFilter : public vtkDataSetToDataSetFilter 00041 { 00042 public: 00043 vtkTypeRevisionMacro(vtkElevationFilter,vtkDataSetToDataSetFilter); 00044 void PrintSelf(ostream& os, vtkIndent indent); 00045 00048 static vtkElevationFilter *New(); 00049 00051 00052 vtkSetVector3Macro(LowPoint,float); 00053 vtkGetVectorMacro(LowPoint,float,3); 00055 00057 00058 vtkSetVector3Macro(HighPoint,float); 00059 vtkGetVectorMacro(HighPoint,float,3); 00061 00063 00064 vtkSetVector2Macro(ScalarRange,float); 00065 vtkGetVectorMacro(ScalarRange,float,2); 00067 00068 protected: 00069 vtkElevationFilter(); 00070 ~vtkElevationFilter() {}; 00071 00072 void Execute(); 00073 float LowPoint[3]; 00074 float HighPoint[3]; 00075 float ScalarRange[2]; 00076 private: 00077 vtkElevationFilter(const vtkElevationFilter&); // Not implemented. 00078 void operator=(const vtkElevationFilter&); // Not implemented. 00079 }; 00080 00081 #endif 00082 00083