Modify a text file: $/x219.pde
$/x219.pde
// x219: grass float x, y; void setup() { size(500,300); } void draw() { background(200,220,250); fill(0,150,0); y= height/4; x= 0; while( x < width) { line(x,y, x, y-10); x= x+20; strokeWeight(1); } //red grass fill(255,0,0); y= height; for( x=0; x< width; x=x+20) { line (x,y,x+2, y-40); strokeWeight(4); x= x + 20; strokeWeight(1); } }