• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

dox/Graphics/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 =========================================================================*/
00028 #ifndef __vtkElevationFilter_h
00029 #define __vtkElevationFilter_h
00030 
00031 #include "vtkDataSetAlgorithm.h"
00032 
00033 class VTK_GRAPHICS_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
00034 {
00035 public:
00036   static vtkElevationFilter* New();
00037   vtkTypeRevisionMacro(vtkElevationFilter, vtkDataSetAlgorithm);
00038   void PrintSelf(ostream& os, vtkIndent indent);
00039 
00041 
00043   vtkSetVector3Macro(LowPoint,double);
00044   vtkGetVectorMacro(LowPoint,double,3);
00046 
00048 
00050   vtkSetVector3Macro(HighPoint,double);
00051   vtkGetVectorMacro(HighPoint,double,3);
00053 
00055 
00056   vtkSetVector2Macro(ScalarRange,double);
00057   vtkGetVectorMacro(ScalarRange,double,2);
00059 
00060 protected:
00061   vtkElevationFilter();
00062   ~vtkElevationFilter();
00063 
00064   int RequestData(vtkInformation*,
00065                   vtkInformationVector**,
00066                   vtkInformationVector*);
00067 
00068   double LowPoint[3];
00069   double HighPoint[3];
00070   double ScalarRange[2];
00071 private:
00072   vtkElevationFilter(const vtkElevationFilter&);  // Not implemented.
00073   void operator=(const vtkElevationFilter&);  // Not implemented.
00074 };
00075 
00076 #endif

Generated by  doxygen 1.7.1