Browse Source

[bug fix]: uncomment boundary_facets

Former-commit-id: a79f95b7ca2622a66f0e01f0cfad3d2bcb878765
Alec Jacobson 6 years ago
parent
commit
3f442b54f3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      include/igl/copyleft/tetgen/tetrahedralize.cpp

+ 2 - 2
include/igl/copyleft/tetgen/tetrahedralize.cpp

@@ -55,7 +55,7 @@ IGL_INLINE int igl::copyleft::tetgen::tetrahedralize(
   {
   {
     return -1;
     return -1;
   }
   }
-  //boundary_facets(TT,TF);
+  boundary_facets(TT,TF);
   return 0;
   return 0;
 }
 }
 
 
@@ -208,7 +208,7 @@ IGL_INLINE int igl::copyleft::tetgen::tetrahedralize(
 	for (int i = 0; i < out.numberofpoints; ++i) {
 	for (int i = 0; i < out.numberofpoints; ++i) {
 		TM[i] = out.pointmarkerlist[i];
 		TM[i] = out.pointmarkerlist[i];
 	}
 	}
-  //boundary_facets(TT,TF);
+  boundary_facets(TT,TF);
   return 0;
   return 0;
 }
 }