Another simple conversion function. This time it converts RGB values to HSV (Hue, Sat, Val). function rgb2hsv(r,g,b) { var x, val, d1, d2, hue, sat, val; r/=255; g/=255;… more →
FLAIMflaim wrote 6 months ago: Another simple conversion function. This time it converts RGB values to HSV (Hue, Sat, Val). functi … more →