From: eap Date: Thu, 20 Mar 2008 12:35:55 +0000 (+0000) Subject: Comment debug output X-Git-Tag: V4_1_2rc1~26 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=28332f1399cb44d7ad6fd1b4009b88f4000222af;p=modules%2Fsmesh.git Comment debug output --- diff --git a/src/DriverMED/DriverMED_Family.cxx b/src/DriverMED/DriverMED_Family.cxx index b95f4b1cb..81bfed534 100644 --- a/src/DriverMED/DriverMED_Family.cxx +++ b/src/DriverMED/DriverMED_Family.cxx @@ -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; } //=============================================================================