Convert HLC to Standard RGB (sRGB)

Description

All r/g/b values in [0., 1.], h in [0., 360.], l and s in [0., 1.].

Usage

colorlib.HLS_to_sRGB(h, l, s)

Arguments

hnumpy.ndarray
Hue values.
lnumpy.ndarray
Lightness.
snumpy.ndarray
Saturation.

Return

list: Returns a list of numpy.ndarrays with the corresponding coordinates in the sRGB color space ([r, g, b]). Same length as the inputs.