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.



True/False
by REAS <http://reas.com>

Boolean data is one bit of information. True or false. It is common to use Booleans with control statements to determine the flow of a program. In this example, when the boolean value "x" is true, vertical black lines are drawn and when the boolean value "x" is false, horizontal gray lines are drawn

Created 09 December 2002

   
// True/False 
// by REAS <http://reas.com> 

boolean x = false; 
 
size(200, 200); 
background(0); 
stroke(0); 
 
for(int i=1; i<width; i+=2) 
{ 
  if(i < width/2) { 
    x = true; 
  } else { 
    x = false; 
  } 
  
  if(x) { 
    stroke(255); 
    line(i, 1, i, height-1); 
  } 
  
  if(!x) { 
    stroke(126); 
    line(width/2 , i, width-2, i); 
  } 
} 
 







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