saturation()ColorCreating & ReadingWeb & Applicationsaturation_.gif
noStroke();
colorMode(HSB, 255);
color c = color(0, 126, 255);
fill(c);
rect(15, 20, 35, 60);
float value = saturation(c); // Sets "value" to "126"
fill(value);
rect(50, 20, 35, 60);
Extracts the saturation value from a color.
saturation(color)
any value of the color datatypefloat
red()
green()
blue()
hue()
brightness()
1.0FunctionCoreExtended