1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Data Exchange, XCAFDoc_ColorTool::AddColor() - fix generated HEX name of a color #317

Quantity_ColorRGBA::ColorToHex() is now used for consistent HEX formatting of RGBA colors.
This commit is contained in:
Kirill Gavrilov 2023-10-25 15:53:18 +03:00 committed by dpasukhi
parent 2d4070bed7
commit 104c5f4261

View File

@ -168,13 +168,9 @@ TDF_Label XCAFDoc_ColorTool::AddColor(const Quantity_ColorRGBA& theColor) const
if (XCAFDoc_ColorTool_AutoNaming)
{
// set name according to color value
const NCollection_Vec4<float>& anRgbaF = theColor;
const NCollection_Vec4<unsigned int> anRgba(anRgbaF * 255.0f);
char aColorHex[32];
Sprintf(aColorHex, "%02X%02X%02X%02X", anRgba.r(), anRgba.g(), anRgba.b(), anRgba.a());
const TCollection_AsciiString aName =
TCollection_AsciiString(Quantity_Color::StringName(theColor.GetRGB().Name())) + " (#"
+ aColorHex + ")";
TCollection_AsciiString(Quantity_Color::StringName(theColor.GetRGB().Name())) + " ("
+ Quantity_ColorRGBA::ColorToHex(theColor) + ")";
TDataStd_Name::Set(aLab, aName);
}