Below I've pasted the syntax from Processing's Reference libraries to outline the basics of the code:
if(expression) { 
  statements 
} else { 
  statements 
} 
if(expression) { 
  statements 
} else if(expression) { 
  statements 
} else { 
  statements 
} 
 
No comments:
Post a Comment