| 978 | operator ImVec4() const { return Value; } |
| 979 | |
| 980 | 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); } |
| 981 | }; |
| 982 | |
| 983 | // Helper: Manually clip large list of items. |