hsvToRgb

fnvoid hsvToRgb(float h, float s, float v, out float r, out float g, out float b)

Converts a color from HSV space to RGB.

Input values must be in the [0.0, 1.0] range; output values will be in the same range.

Parameters

hHue
sSaturation
vValue
rReturn value for the red component
gReturn value for the green component
bReturn value for the blue component