Extracted from Pike v7.8 release 866 at 2016-11-06.
pike.ida.liu.se
[Top]
Colors

Method Colors.hsv_to_rgb()


Method hsv_to_rgb

array(int(0..255)) hsv_to_rgb(array(int(0..255)) hsv)
array(int(0..255)) hsv_to_rgb(int(0..255) h, int(0..255) s, int(0..255) v)

Description

This function returns the RGB value of the color described by the provided HSV value. It is essentially calling Image.Color.hsv(h,s,v)->rgb().

See also

Colors.rgb_to_hsv() Image.Color.hsv()