Browse Source

no message

Former-commit-id: 3ef889fb027040665150cdad2e65cf7c9fca8005
Olga Diamanti 9 years ago
parent
commit
435e58feb9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/igl/sort_vectors_ccw.cpp

+ 1 - 1
include/igl/sort_vectors_ccw.cpp

@@ -20,7 +20,7 @@ IGL_INLINE void igl::sort_vectors_ccw(
   for (int i=0; i<half_degree; ++i)
   {
     Eigen::Matrix<typename DerivedS::Scalar,1,3> Pl = F.colPivHouseholderQr().solve(P.segment(i*3,3).transpose()).transpose();
-    assert(fabs(Pl(2))/Pl.cwiseAbs().maxCoeff() <1e-5);
+//    assert(fabs(Pl(2))/Pl.cwiseAbs().maxCoeff() <1e-5);
     angles[i] = atan2(Pl(1),Pl(0));
   }