changequote({,}) define({_TITLE_},{Varkon MBS Programmers manual}) define({_SUBTITLE_},{- hsv_to_rgb - Procedure}) define({_INDEXLINK_},{index}) define({_STYLE_},{../varkonstyle.css}) include(../../include/header.inc)
Converts color values from the HSV system to RGB. The HSV system uses a base color (the Hue) of specific purity (the Saturation) and brightness (the Value) to create a color. Saturation = 100 means that the color is 100% pure (no white added).
hsv_to_rgb(hue, saturation, value, red, green, blue); int hue; int saturation; int value; int red; int green; int blue;
hue | - Hue, 0 - 360 |
saturation | - Saturation, 0 - 100 |
value | - Value, 0 - 100 |
red | - Red intensity, 0 - 255 |
green | - Green intensity, 0 - 255 |
blue | - Blue intensity, 0 - 255 |
None.
See also:
include(../../include/svnversion.inc) include(../../include/footer.inc)