//Sharon Lee
//Section E
//dayoungl@andrew.cmu.edu
//Project 05
function setup() {
createCanvas(400, 400);
background(156,255,228);
var tw = 60;
var th = 40;
var oy = 30;
var ox = 30;
var z = 10;
var d = 30;
//rows
for (var y = 0; y < 8; y += 1) {
//columns
for (var x = 0; x < z; x += 1) {
//
var py = oy + y * th;
var px = ox + x * tw;
if (y % 2) {
z = 9;
stroke(0);
strokeWeight(5);
fill(229,223,73);
stroke(255);
line(px-30, py, width-20, py);
rectMode(CENTER);
rect(px + 30, py, d, d);
} else {
z = 10;
noStroke();
fill(255,70,138);
// ellipse(px ,py , d, d);
}
}
}
noLoop();
}
I worked with simple geometric shapes to create this wallpaper. I was inspired by some of the art-nouveau wallpapers which focused on shape of the plants. The yellow square is an abstract representation of leaves.