Ver código fonte

bug fix

Former-commit-id: dd87ccb93dcdafea335c387f157b6eb9cd518b22
Alec Jacobson 10 anos atrás
pai
commit
fa3c83873d
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      include/igl/is_boundary_edge.cpp

+ 1 - 1
include/igl/is_boundary_edge.cpp

@@ -107,7 +107,7 @@ void igl::is_boundary_edge(
   // Look of occurances of 1
   for(int e = 0;e<E.rows();e++)
   {
-    B(e) = (N(EMAP(e)) == 1);
+    B(e) = N(e) == 1;
   }
 }