From 28332f1399cb44d7ad6fd1b4009b88f4000222af Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 20 Mar 2008 12:35:55 +0000 Subject: [PATCH] Comment debug output --- src/DriverMED/DriverMED_Family.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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; } //============================================================================= -- 2.39.2