saturation()
Contents
saturation()#
Extracts the saturation value from a color.
Examples#
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.saturation(c) # sets 'value' to 126
py5.fill(value)
py5.rect(50, 20, 35, 60)
Description#
Extracts the saturation value from a color.
Underlying Processing method: saturation
Signatures#
saturation(
rgb: int, # any value of the color datatype
/,
) -> float
Updated on March 06, 2023 02:49:26am UTC