<static> HSLtoRGB(h, s, l, out) → {object}
Converts an HSL (hue, saturation and lightness) color value to RGB.Conversion forumla from http://en.wikipedia.org/wiki/HSL_color_space.Assumes HSL values are contained in the set [0, 1] and returns r, g and b values in the set [0, 255].Based on code by Michael Jackson (https://github.com/mjijackson)
Parameters
Name Type Argument Description h number The hue, in the range 0 - 1. s number The saturation, in the range 0 - 1. l number