hue()#

Extracts the hue value from a color.

Examples#

example picture for hue()

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)

Description#

Extracts the hue value from a color.

Underlying Processing method: hue

Signatures#

hue(
    rgb: int,  # any value of the color datatype
    /,
) -> float

Updated on March 06, 2023 02:49:26am UTC