FACT++  1.0
function HLStoRGB (   hue)

Definition at line 346 of file index.js.

References hueToHex(), and var().

Referenced by color().

347 {
348  hue *= 14;
349 
350  var sr = hueToHex(20-hue);
351  var sg = hueToHex(14-hue);
352  var sb = hueToHex(26-hue);
353 
354  return sr+sg+sb;
355 }
po::typed_value< T > * var(T *ptr=0)
function hueToHex(flt)
Definition: index.js:340

+ Here is the call graph for this function:

+ Here is the caller graph for this function: