HSV.toRgb

void toRgb(double h, double s, double v, out double r, out double g, out double 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