converts an HSV color code to the RGB format
h | number | the hue value from 0 to 360 |
s | number | the saturation value from 0 to 1 |
v | number | the brightness value from 0 to 1 |
array | the array with RED GREEN BLUE values |
webix.color.hsvToRgb(32,0.62,0.74);// -> [188, 134, 71]