Example
// Learning Processing
// Daniel Shiffman
// http://www.learningprocessing.com

// Example 1-1: stroke and fill
size(200,200);
background(255);
stroke(0); 
fill(150);
rect(50,50,75,100);


»

No comments yet.

Leave a comment