VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkSimpleElevationFilter.h 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 =========================================================================*/ 00029 #ifndef __vtkSimpleElevationFilter_h 00030 #define __vtkSimpleElevationFilter_h 00031 00032 #include "vtkFiltersCoreModule.h" // For export macro 00033 #include "vtkDataSetAlgorithm.h" 00034 00035 class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm 00036 { 00037 public: 00038 vtkTypeMacro(vtkSimpleElevationFilter,vtkDataSetAlgorithm); 00039 void PrintSelf(ostream& os, vtkIndent indent); 00040 00042 static vtkSimpleElevationFilter *New(); 00043 00045 00046 vtkSetVector3Macro(Vector,double); 00047 vtkGetVectorMacro(Vector,double,3); 00049 00050 protected: 00051 vtkSimpleElevationFilter(); 00052 ~vtkSimpleElevationFilter() {} 00053 00054 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00055 double Vector[3]; 00056 private: 00057 vtkSimpleElevationFilter(const vtkSimpleElevationFilter&); // Not implemented. 00058 void operator=(const vtkSimpleElevationFilter&); // Not implemented. 00059 }; 00060 00061 #endif 00062 00063