Home
last modified time | relevance | path

Searched refs:hls_to_rgb (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_colorsys.py52 colorsys.hls_to_rgb(*colorsys.rgb_to_hls(*rgb))
70 self.assertTripleEqual(rgb, colorsys.hls_to_rgb(*hls))
/external/python/cpython2/Doc/library/
Dcolorsys.rst44 .. function:: hls_to_rgb(h, l, s)
/external/python/cpython2/Lib/
Dcolorsys.py90 def hls_to_rgb(h, l, s): function
/external/ImageMagick/coders/
Dsixel.c171 static int hls_to_rgb(int hue, int lum, int sat) in hls_to_rgb() function
401 sixel_palet[color_index] = hls_to_rgb(param[2] * 100 / 360, param[3], param[4]); in sixel_decode()