Homework 1.2 part 2 by Reno Abraham

void setup(){
size(400,400);
noStroke();
fill(250,0,0);
rect(0,0,200,200);
fill(0,0,250);
rect(0,200,200,200);
fill(0,250,0);
rect(200,0,200,200);
fill(153);
rect(200,200,200,200);
stroke(0);
strokeWeight(4);
fill(255,255,255,210);
ellipse(200,200,100,100);
// size of the pixels
// make the rectangle have no outline
// rectangle on the left corner and color red
// another rectangle on the lower left corner and color will be blue blue
// third rectangle would be on the right corner and the color would be green
// The last rectangle would be on the right lower corner with the color gray
// make a circle
// put the circle in the middle
// make the circle transparent
// make the circle outline thick black

}

part 3


http://www.openprocessing.org/sketch/88208

 

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

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