]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
remove unneeded comments
authorenk <enk@opencascade.com>
Thu, 7 Dec 2006 13:04:18 +0000 (13:04 +0000)
committerenk <enk@opencascade.com>
Thu, 7 Dec 2006 13:04:18 +0000 (13:04 +0000)
src/VISU_I/VISU_Result_i.cc

index 72341969473623428517321756cca599836303db..0135f88f4dc35169b7ad21ad034307bb66ff1c13 100644 (file)
@@ -1667,10 +1667,6 @@ Result_i
          int iPrev = ( iAx == 0 ) ? 2 : iAx - 1;
          int iNext = ( iAx == 2 ) ? 0 : iAx + 1;
          gInfo->myAxis[ iAx ] = axDirs[ iPrev ] ^ axDirs[ iNext ];
-         cout << "myAxis["<<iAx<<"]:";
-         cout << "|" << (gInfo->myAxis[ iAx ]).X();
-         cout << "|" << (gInfo->myAxis[ iAx ]).Y();
-         cout << "|" << (gInfo->myAxis[ iAx ]).Z()<<"|";
        }
       
       // get and sort intermediate component values - projections of nodes
@@ -1732,12 +1728,9 @@ Result_i
          vector< vtkFloatingPointType >& myComp = gInfo->myComponets[ iAx ];
          myComp.resize( nbVals );
          list< vtkFloatingPointType >::iterator v = values.begin();
-         cout << "Components["<<iAx<<"]:";
          for ( int i = 0; v != values.end(); ++v ){
            myComp[ i++ ] = *v;
-           cout << "|" << *v;
          }
-         cout << endl;
        }
     }
     else {