VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkRectilinearGridToTetrahedra.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 =========================================================================*/ 00048 #ifndef __vtkRectilinearGridToTetrahedra_h 00049 #define __vtkRectilinearGridToTetrahedra_h 00050 00051 // ways to create the mesh from voxels 00052 #define VTK_VOXEL_TO_12_TET 12 00053 #define VTK_VOXEL_TO_5_TET 5 00054 #define VTK_VOXEL_TO_6_TET 6 00055 #define VTK_VOXEL_TO_5_AND_12_TET -1 00056 00057 #include "vtkFiltersGeneralModule.h" // For export macro 00058 #include "vtkUnstructuredGridAlgorithm.h" 00059 class vtkRectilinearGrid; 00060 class vtkSignedCharArray; 00061 class vtkIdList; 00062 class vtkCellArray; 00063 class vtkPoints; 00064 00065 class VTKFILTERSGENERAL_EXPORT vtkRectilinearGridToTetrahedra : public vtkUnstructuredGridAlgorithm 00066 { 00067 public: 00068 vtkTypeMacro(vtkRectilinearGridToTetrahedra,vtkUnstructuredGridAlgorithm); 00069 void PrintSelf(ostream& os, vtkIndent indent); 00070 00072 static vtkRectilinearGridToTetrahedra *New(); 00073 00075 00077 void SetTetraPerCellTo5() {SetTetraPerCell(VTK_VOXEL_TO_5_TET);}; 00078 void SetTetraPerCellTo6() {SetTetraPerCell(VTK_VOXEL_TO_6_TET);}; 00079 void SetTetraPerCellTo12() {SetTetraPerCell(VTK_VOXEL_TO_12_TET);}; 00080 void SetTetraPerCellTo5And12() {SetTetraPerCell(VTK_VOXEL_TO_5_AND_12_TET);}; 00081 vtkSetMacro(TetraPerCell,int); 00082 vtkGetMacro(TetraPerCell,int); 00084 00086 00088 vtkSetMacro(RememberVoxelId,int); 00089 vtkGetMacro(RememberVoxelId,int); 00090 vtkBooleanMacro(RememberVoxelId,int); 00092 00094 00099 void SetInput(const double Extent[3], const double Spacing[3], 00100 const double tol=0.001); 00102 00103 00104 void SetInput(const double ExtentX, 00105 const double ExtentY, 00106 const double ExtentZ, 00107 const double SpacingX, 00108 const double SpacingY, 00109 const double SpacingZ, 00110 const double tol=0.001); 00112 00113 protected: 00114 vtkRectilinearGridToTetrahedra(); 00115 ~vtkRectilinearGridToTetrahedra() {}; 00116 00117 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00118 00119 int RememberVoxelId; 00120 int TetraPerCell; 00121 00122 virtual int FillInputPortInformation(int, vtkInformation*); 00123 00124 private: 00125 vtkRectilinearGridToTetrahedra(const vtkRectilinearGridToTetrahedra&); // Not implemented. 00126 00127 void operator=(const vtkRectilinearGridToTetrahedra&); // Not implemented. 00128 00129 //BTX 00131 00134 static void DetermineGridDivisionTypes(vtkRectilinearGrid *RectGrid, 00135 vtkSignedCharArray *VoxelSubdivisionType, 00136 const int &TetraPerCell); 00138 00140 00141 static void GridToTetMesh(vtkRectilinearGrid *RectGrid, 00142 vtkSignedCharArray *VoxelSubdivisionType, 00143 const int &TetraPerCell, 00144 const int &RememberVoxelId, 00145 vtkUnstructuredGrid *TetMesh); 00147 00149 00153 static int TetrahedralizeVoxel(vtkIdList *VoxelCorners, 00154 const int &DivisionType, 00155 vtkPoints *NodeList, 00156 vtkCellArray *TetList); 00158 00160 00162 static inline void TetrahedralizeAddCenterPoint(vtkIdList *VoxelCorners, 00163 vtkPoints *NodeList); 00164 //ETX 00165 }; 00167 00168 #endif /* __vtkRectilinearGridToTetrahedra_h */ 00169