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.

This method has additional color functionality that is not reflected in the method’s signatures. For example, you can pass the name of a color (e.g. “green”, “mediumpurple”, etc). Look at the online “All About Colors” Python Ecosystem Integration tutorial for more information.

Underlying Processing method: hue

Signatures#

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

Updated on December 25, 2023 16:36:33pm UTC