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 "vtkMarchingCubes.h" 00065 00066 class VTK_GRAPHICS_EXPORT vtkDiscreteMarchingCubes : public vtkMarchingCubes 00067 { 00068 public: 00069 static vtkDiscreteMarchingCubes *New(); 00070 vtkTypeMacro(vtkDiscreteMarchingCubes,vtkMarchingCubes); 00071 00072 protected: 00073 vtkDiscreteMarchingCubes(); 00074 ~vtkDiscreteMarchingCubes(); 00075 00076 virtual int RequestData(vtkInformation *, vtkInformationVector **, 00077 vtkInformationVector *); 00078 00079 private: 00080 vtkDiscreteMarchingCubes(const vtkDiscreteMarchingCubes&); // Not implemented. 00081 void operator=(const vtkDiscreteMarchingCubes&); // Not implemented. 00082 00083 }; 00084 00085 #endif 00086 00087