[][src]Function mandalas::util::hsl_to_rgb

pub fn hsl_to_rgb(hsl: [f64; 3]) -> [f64; 3]

Translate an HSL colour point into an RGB colour point.

Based wholly on https://en.wikipedia.org/wiki/HSL_and_HSV#From_HSL.

Examples

assert_eq!(hsl_to_rgb([1f64, 1f64, 1f64]), [1f64, 1f64, 1f64]);
assert_eq!(hsl_to_rgb([0f64, 0f64, 0f64]), [0f64, 0f64, 0f64]);