FACT++  1.0
function HLStoRGB (   hue)

Definition at line 19 of file color.js.

References hueToHex(), and var().

Referenced by color().

20 {
21  hue *= 14;
22 
23  var sr = hueToHex(20-hue);
24  var sg = hueToHex(14-hue);
25  var sb = hueToHex(26-hue);
26 
27  return sr+sg+sb;
28 }
po::typed_value< T > * var(T *ptr=0)
function hueToHex(flt)
Definition: color.js:13

+ Here is the call graph for this function:

+ Here is the caller graph for this function: