Skip to content

Instantly share code, notes, and snippets.

View lglista's full-sized avatar
🤠

Lawrence Glista lglista

🤠
View GitHub Profile
@marukrap
marukrap / Color.cpp
Last active December 1, 2022 22:18
Simple Color Conversions between RGB and HSL/HSV
// https://en.wikipedia.org/wiki/HSL_and_HSV
#include <SFML/Graphics/Color.hpp>
#include <tuple>
#include <algorithm> // min, max
// HSL/HSV
// H Hue component, range: [0.f, 360.f)
// S Saturation component, range: [0.f, 1.f)