Salome HOME
Comment debug output
authoreap <eap@opencascade.com>
Thu, 20 Mar 2008 12:35:55 +0000 (12:35 +0000)
committereap <eap@opencascade.com>
Thu, 20 Mar 2008 12:35:55 +0000 (12:35 +0000)
src/DriverMED/DriverMED_Family.cxx

index b95f4b1cba46cc3cc06554bb29a7c04acea7e61d..81bfed53462567a13d76cafd977853d62abdb83f 100644 (file)
@@ -385,14 +385,14 @@ void DriverMED_Family::Init (SMESHDS_GroupBase* theGroup)
   double aRed = aColor.Red();
   double aGreen = aColor.Green();
   double aBlue = aColor.Blue();
-  int aR = aRed*255;
-  int aG = aGreen*255;
-  int aB = aBlue*255;
-  cout << "aRed = " << aR << endl;
-  cout << "aGreen = " << aG << endl;
-  cout << "aBlue = " << aB << endl;
+  int aR = (int) aRed*255;
+  int aG = (int) aGreen*255;
+  int aB = (int) aBlue*255;
+//   cout << "aRed = " << aR << endl;
+//   cout << "aGreen = " << aG << endl;
+//   cout << "aBlue = " << aB << endl;
   myGroupAttributVal = (int)(aR*1000000 + aG*1000 + aB);
-  cout << "myGroupAttributVal = " << myGroupAttributVal << endl;
+  //cout << "myGroupAttributVal = " << myGroupAttributVal << endl;
 }
 
 //=============================================================================