VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkSubdivideTetra.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 =========================================================================*/ 00024 #ifndef vtkSubdivideTetra_h 00025 #define vtkSubdivideTetra_h 00026 00027 #include "vtkFiltersModelingModule.h" // For export macro 00028 #include "vtkUnstructuredGridAlgorithm.h" 00029 00030 class VTKFILTERSMODELING_EXPORT vtkSubdivideTetra : public vtkUnstructuredGridAlgorithm 00031 { 00032 public: 00033 static vtkSubdivideTetra *New(); 00034 vtkTypeMacro(vtkSubdivideTetra,vtkUnstructuredGridAlgorithm); 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00037 00038 protected: 00039 vtkSubdivideTetra(); 00040 ~vtkSubdivideTetra() {} 00041 00042 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00043 00044 private: 00045 vtkSubdivideTetra(const vtkSubdivideTetra&); // Not implemented. 00046 void operator=(const vtkSubdivideTetra&); // Not implemented. 00047 }; 00048 00049 #endif 00050 00051