MCPcopy Create free account
hub / github.com/cinder/Cinder / HSV

Method HSV

include/imgui/imgui.h:2941–2941  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2939 // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers.
2940 inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; }
2941 static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r, g, b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r, g, b, a); }
2942};
2943
2944//-----------------------------------------------------------------------------

Callers

nothing calls this directly

Calls 1

ImColorClass · 0.85

Tested by

no test coverage detected