FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
    Examples \ Tutorials \ Courses & Workshops
 
   
 
 
Examples for Processing (BETA) version 91+. If you have a previous version, use the examples included with your software. If you see any errors or have comments, please let us know.



Creating (Homage to Albers)
by REAS <http://reas.com>

Creating variables for colors that may be referred to in the program by their name, rather than a number.

Created 09 December 2002

   
// Creating (Homage to Albers) 
// by REAS <http://reas.com> 

size(200, 200); 
noStroke(); 
 
color inside = color(204, 102, 0); 
color middle = color(204, 153, 0); 
color outside = color(153, 51, 0); 
 
// These statements are equivalent to the statements above. 
// Programmers may use the format they prefer. 
//color inside = #CC6600; 
//color middle = #CC9900; 
//color outside = #993300; 
 
fill(outside); 
rect(0, 0, 200, 200); 
fill(middle); 
rect(40, 60, 120, 120); 
fill(inside); 
rect(60, 90, 80, 80); 
 







   
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info