xxxxxxxxxx
53
/*
Assignment #3 - Recreate an artwork
By: Sawyer Farias
*/
function setup() {
createCanvas(600, 400);
noStroke();
}
function draw() {
background(255);
//horizontal, sage rectangles
//starts from the small sqaure
fill('#BEC6A0');
rect(282, 65, 10, 10);
rect(262, 85, 30, 10);
rect(242, 105, 50, 10);
rect(222, 125, 70, 10);
rect(202, 145, 90, 10);
rect(182, 165, 110, 10);
rect(162, 185, 130, 10);
rect(142, 205, 150, 10);
rect(122, 225, 170, 10);
rect(102, 245, 190, 10);
rect(82, 265, 210, 10);
rect(62, 285, 230, 10);
rect(42, 305, 250, 10);
rect(22, 325, 270, 10);
//vertical, light brown rectangles
//starts from the tallest rectangle
fill('#9A7E6F');
rect(302, 65, 10, 270);
rect(322, 85, 10, 250);
rect(342, 105, 10, 230);
rect(362, 125, 10, 210);
rect(382, 145, 10, 190);
rect(402, 165, 10, 170);
rect(422, 185, 10, 150);
rect(442, 205, 10, 130);
rect(462, 225, 10, 110);
rect(482, 245, 10, 90);
rect(502, 265, 10, 70);
rect(522, 285, 10, 50);
rect(542, 305, 10, 30);
rect(562, 325, 10, 10);
}
function mousePressed () {
save('Assignment3_SawyerFarias.png')
}