var Colors=new Object();Colors.hsv2rgb=function(h,d,c){if(typeof(h)=="object"){d=h.s;c=h.v;h=h.h}var e,m,k,g,j,b,a,l;h%=360;if(c==0){return({r:0,g:0,b:0})}d/=100;c/=100;h/=60;g=Math.floor(h);j=h-g;b=c*(1-d);a=c*(1-(d*j));l=c*(1-(d*(1-j)));if(g==0){e=c;m=l;k=b}else{if(g==1){e=a;m=c;k=b}else{if(g==2){e=b;m=c;k=l}else{if(g==3){e=b;m=a;k=c}else{if(g==4){e=l;m=b;k=c}else{if(g==5){e=c;m=b;k=a}}}}}}e=Math.floor(e*255);m=Math.floor(m*255);k=Math.floor(k*255);return({r:e,g:m,b:k})};Colors.rgb2hsv=function(c,k,h){if(typeof(c)=="object"){k=c.g;h=c.b;c=c.r}var j,b,g,d,e,a,b;c/=255;k/=255;h/=255;j=Math.min(Math.min(c,k),h);b=Math.max(Math.max(c,k),h);if(j==b){return({h:0,s:0,v:b*100})}g=(c==j)?k-h:((k==j)?h-c:c-k);d=(c==j)?3:((k==j)?5:1);e=Math.floor((d-g/(b-j))*60)%360;a=Math.floor(((b-j)/b)*100);b=Math.floor(b*100);return({h:e,s:a,v:b})};Colors.c162rgb=function(d){var c=d>>16&255;var a=d>>8&255;var b=d&255;return({r:c,g:a,b:b})};Colors.rgb2c16=function(f,b,c){if(typeof(f)=="object"){b=f.g;c=f.b;f=f.r}var e=Number("0x"+Colors.dec2hex(f))<<16;var d=Number("0x"+Colors.dec2hex(b))<<8;var a=Number("0x"+Colors.dec2hex(c));var g=e+d+a;return(g)};Colors.rgb2htcc=function(d,a,b){if(typeof(d)=="object"){a=d.g;b=d.b;d=d.r}var c="#";c+=Colors.dec2hex(d);c+=Colors.dec2hex(a);c+=Colors.dec2hex(b);return(c)};Colors.htcc2rgb=function(a){red=parseInt("0X"+a.substr(1,2));grn=parseInt("0X"+a.substr(3,2));blu=parseInt("0X"+a.substr(5,2));return({r:red,g:grn,b:blu})};Colors.dec2hex=function(b){var a="";b=Number(b);a=b.toString(16);if(a.length==1){a="0"+a}return a};Colors.hsb2hsl=function(d,c,a){return{h:d,s:c,l:a-c/2}};
