VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkDiscreteMarchingCubes.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 // .SECTION Thanks 00015 // Jim Miller at GE Research implemented the original version of this 00016 // filter. 00017 // This work was supported by PHS Research Grant No. 1 P41 RR13218-01 00018 // from the National Center for Research Resources and supported by a 00019 // grant from the DARPA, executed by the U.S. Army Medical Research 00020 // and Materiel Command/TATRC Cooperative Agreement, 00021 // Contract # W81XWH-04-2-0012. 00022 00023 =========================================================================*/ 00061 #ifndef vtkDiscreteMarchingCubes_h 00062 #define vtkDiscreteMarchingCubes_h 00063 00064 #include "vtkFiltersGeneralModule.h" // For export macro 00065 #include "vtkMarchingCubes.h" 00066 00067 class VTKFILTERSGENERAL_EXPORT vtkDiscreteMarchingCubes : public vtkMarchingCubes 00068 { 00069 public: 00070 static vtkDiscreteMarchingCubes *New(); 00071 vtkTypeMacro(vtkDiscreteMarchingCubes,vtkMarchingCubes); 00072 00073 protected: 00074 vtkDiscreteMarchingCubes(); 00075 ~vtkDiscreteMarchingCubes(); 00076 00077 virtual int RequestData(vtkInformation *, vtkInformationVector **, 00078 vtkInformationVector *); 00079 00080 private: 00081 vtkDiscreteMarchingCubes(const vtkDiscreteMarchingCubes&); // Not implemented. 00082 void operator=(const vtkDiscreteMarchingCubes&); // Not implemented. 00083 00084 }; 00085 00086 #endif 00087 00088