Comment debug output

This commit is contained in:
eap 2008-03-20 12:35:55 +00:00
parent 886d5de06c
commit 28332f1399

View 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;
}
//=============================================================================