Procházet zdrojové kódy

rm prints

Former-commit-id: 08054433de2e102103e9d049b770f4d72e818ccc
Alec Jacobson před 10 roky
rodič
revize
6b73e3c617
1 změnil soubory, kde provedl 0 přidání a 8 odebrání
  1. 0 8
      include/igl/InElementAABB.h

+ 0 - 8
include/igl/InElementAABB.h

@@ -283,10 +283,8 @@ inline std::vector<int> igl::InElementAABB::find(
     inside &= (q(d)-m_bb_min(d))>=epsilon;
     inside &= (m_bb_max(d)-q(d))>=epsilon;
   }
-  cout<<"searching..."<<endl;
   if(!inside)
   {
-    cout<<"not in bb"<<endl;
     return std::vector<int>();
   }
   if(m_element != -1)
@@ -318,12 +316,6 @@ inline std::vector<int> igl::InElementAABB::find(
           a1 = doublearea_single(V1,V2,(Vector2d)q);
           a2 = doublearea_single(V2,V3,(Vector2d)q);
           a3 = doublearea_single(V3,V1,(Vector2d)q);
-          cout<<
-            a0<<" "<<
-            a1<<" "<<
-            a2<<" "<<
-            a3<<" "<<
-            endl;
           break;
         }
       default:assert(false);