00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkDiscreteMarchingCubes.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 // .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 =========================================================================*/ 00058 #ifndef __vtkDiscreteMarchingCubes_h 00059 #define __vtkDiscreteMarchingCubes_h 00060 00061 #include "vtkMarchingCubes.h" 00062 00063 class VTK_GRAPHICS_EXPORT vtkDiscreteMarchingCubes : public vtkMarchingCubes 00064 { 00065 public: 00066 static vtkDiscreteMarchingCubes *New(); 00067 vtkTypeRevisionMacro(vtkDiscreteMarchingCubes,vtkMarchingCubes); 00068 00069 protected: 00070 vtkDiscreteMarchingCubes(); 00071 ~vtkDiscreteMarchingCubes(); 00072 00073 virtual int RequestData(vtkInformation *, vtkInformationVector **, 00074 vtkInformationVector *); 00075 00076 private: 00077 vtkDiscreteMarchingCubes(const vtkDiscreteMarchingCubes&); // Not implemented. 00078 void operator=(const vtkDiscreteMarchingCubes&); // Not implemented. 00079 00080 }; 00081 00082 #endif 00083 00084