MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / hsl_to_hsv

Function hsl_to_hsv

graphs/style.py:62–66  ·  view source on GitHub ↗
(hsl)

Source from the content-addressed store, hash-verified

60
61
62def hsl_to_hsv(hsl):
63 h, s, l = hsl
64 s *= l if (l < 0.5) else (1 - l)
65 l += s
66 return (h, 2 * s / l, l)
67
68
69def darken(hsl):

Callers 1

drawMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected