hue()
Contents
hue()¶
Extracts the hue value from a color.
Examples¶

1 2 3 4 5 6 7 8 9 | def setup():
py5.no_stroke()
py5.color_mode(py5.HSB, 255)
c = py5.color(0, 126, 255)
py5.fill(c)
py5.rect(15, 20, 35, 60)
value = py5.hue(c) # sets 'value' to "0"
py5.fill(value)
py5.rect(50, 20, 35, 60)
|
Syntax¶
hue(rgb: int, /) -> float