Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

saturation()

   
Examples  
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); 
Description   Extracts the saturation value from a color.
   
Syntax  
saturation(color)
   
Parameters  
color   any value of the color datatype

   
Returns   float
   
Usage   Web & Application
   
Related   red()
green()
blue()
hue()
brightness()
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas