Computes RGB values from HSL values, found on: http://www.geekymonkey.com/Programming/CSharp/RGB2HSL_HSL2RGB.htm

Namespace: VVVV.Utils.VColor
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static void HSLtoRGB(
	double H,
	double S,
	double L,
	out double Red,
	out double Green,
	out double Blue
)

Parameters

H
Type: System..::..Double
Hue
S
Type: System..::..Double
Saturation
L
Type: System..::..Double
Lightness
Red
Type: System..::..Double%
Output parameter, gets filled with the red value
Green
Type: System..::..Double%
Output parameter, gets filled with the green value
Blue
Type: System..::..Double%
Output parameter, gets filled with the blue value

See Also