homework 1.2 part 2

//Thomas Wu-Prof. Calli Higgins-2/1/13-Assignment 1.2

size(400,400);//sets window size
ellipseMode(CENTER); //set ellipse to center mode
noStroke();//shape has no outline
fill(255,0,0);//set red color
rect(0,0,200,200);//uno rectangle
fill(0,0,255);//set color blue
rect(0,200,200,200);//2nd rectangle
fill(0,255,0);//set color green
rect(200,0,200,200);//3rd rectangle
fill(113,121,115);//Set color to grey
rect(200,200,200,200);//4th rectangle
stroke(0);//stroke color black
fill(255,255,255,200);//set color to white
strokeWeight(4);//sets the line to 4 pixels
ellipse(200,200,100,100);//sets ellipse

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *