Skip to content

Instantly share code, notes, and snippets.

View NESTOWL's full-sized avatar
😏
https://discord.gg/PUSHEDS

NESTOWL NESTOWL

😏
https://discord.gg/PUSHEDS
View GitHub Profile
@mathebox
mathebox / color_conversion.py
Created April 12, 2015 16:47
Python methods to convert colors between RGB, HSV and HSL
import math
def rgb_to_hsv(r, g, b):
r = float(r)
g = float(g)
b = float(b)
high = max(r, g, b)
low = min(r, g, b)
h, s, v = high, high, high