Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
62
def
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
69
def
darken(hsl):
Callers
1
draw
Method · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected