We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c39d3 commit c11d613Copy full SHA for c11d613
planning/autoware_objects_of_interest_marker_interface/src/objects_of_interest_marker_interface.cpp
@@ -76,14 +76,14 @@ ColorRGBA ObjectsOfInterestMarkerInterface::getColor(
76
const ColorName & color_name, const float alpha)
77
{
78
switch (color_name) {
79
+ case ColorName::GRAY:
80
+ return coloring::getGray(alpha);
81
case ColorName::GREEN:
82
return coloring::getGreen(alpha);
83
case ColorName::AMBER:
84
return coloring::getAmber(alpha);
85
case ColorName::RED:
86
return coloring::getRed(alpha);
- case ColorName::GRAY:
- return coloring::getGray(alpha);
87
default:
88
return coloring::getGray(alpha);
89
}
0 commit comments