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

   1  
   2  function hexToRGB ( hex:Number ){
   3     var returnObj:Object = new Object();   
   4     var returnObj .r = hex >> 16;
   5     var temp = hex ^ r << 16;
   6     var returnObj .g = temp >> 8;
   7     var returnObj .b = temp ^ g << 8;
   8  
   9     return returnObj;
  10  }

RGB to HEX

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