correct function source

This commit is contained in:
Luca Conte 2025-03-11 18:08:46 +01:00
parent e8b713db85
commit e054627c25
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ GLfloat hueToRgb(GLfloat p, GLfloat q, GLfloat t) {
return p; return p;
} }
// Color Conversion Functions by Copilot // Color Conversion Functions from https://gist.github.com/ciembor/1494530
ColorRGB hslToRgb(GLfloat h, GLfloat s, GLfloat l) { ColorRGB hslToRgb(GLfloat h, GLfloat s, GLfloat l) {
ColorRGB result = {0, 0, 0}; ColorRGB result = {0, 0, 0};