<static> HSVtoRGB(h, s, v, out) → {object}
Converts an HSV (hue, saturation and value) color value to RGB.Conversion forumla from http://en.wikipedia.org/wiki/HSL_color_space.Assumes HSV 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. v number Th