Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

eric e. dolecki www.ericd.net

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

HEX to RGB

function hexToRGB ( hex:Number ){
   var returnObj:Object = new Object();   
   var returnObj .r = hex >> 16;
   var temp = hex ^ r << 16;
   var returnObj .g = temp >> 8;
   var returnObj .b = temp ^ g << 8;

   return returnObj;
}

RGB to HEX

function RGBToHex (r, g, b ){
    var hex = r << 16 ^ g << 8 ^ b;
   return hex;
}
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS