mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
Comment debug output
This commit is contained in:
parent
886d5de06c
commit
28332f1399
@ -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;
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user