]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Comment some debug cout.
authoradam <adam>
Mon, 18 May 2009 13:13:54 +0000 (13:13 +0000)
committeradam <adam>
Mon, 18 May 2009 13:13:54 +0000 (13:13 +0000)
src/GEOMAlgo/GEOMAlgo_Tools.cxx

index 2556e13316ec222897ef5322bf9a9a01ff245cbf..f19581253252f64d543831b8f18ecc81fde3ec79 100644 (file)
@@ -295,24 +295,24 @@ Standard_Boolean GEOMAlgo_Tools::ProjectPointOnShape(const gp_Pnt& aP1,
     {
     case TopAbs_EDGE:
       {
-        cout << "$$$ case TopAbs_EDGE" << endl;
+        // cout << "$$$ case TopAbs_EDGE" << endl;
         const TopoDS_Edge& aE2 = TopoDS::Edge(aS);
         //
         if (BRep_Tool::Degenerated(aE2)) { // jfa
-          cout << "$$$ Degenerated" << endl;
+          // cout << "$$$ Degenerated" << endl;
           return Standard_True;
         }
         else {
           Standard_Real f, l;
           Handle(Geom_Curve) aC3D = BRep_Tool::Curve (aE2, f, l);
           if (aC3D.IsNull()) {
-            cout << "$$$ aC3D.IsNull()" << endl;
+            // cout << "$$$ aC3D.IsNull()" << endl;
             return Standard_True;
           }
           bIsDone = aCtx.ProjectPointOnEdge(aP1, aE2, aT2);
         }
         if (!bIsDone) {
-          cout << "$$$ !bIsDone" << endl;
+          // cout << "$$$ !bIsDone" << endl;
           return bIsDone;
         }
         //