Rebol Programming/hsv-to-rgb

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

HSV-TO-RGB hsv 

DESCRIPTION:[edit | edit source]

Converts HSV (hue, saturation, value) to RGB

HSV-TO-RGB is a native value.

ARGUMENTS[edit | edit source]

  • hsv -- (Type: tuple)

SOURCE CODE[edit | edit source]

hsv-to-rgb: native[
    "Converts HSV (hue, saturation, value) to RGB" 
    hsv [tuple!]
]