sketch
function setup() {
createCanvas(480, 480);
pixelDensity(3.0);
}
function draw() {
background(51, 116, 173); drawGrid(); for(x = 120; x < width + 240; x += 240) { for(y = 0; y < height + 120; y += 120) {
push();
if((y+120)%240 == 0 ) {
translate(-120, 0); }
drawTile(x, y); rectMode(CENTER);
noStroke();
rect(x-120, y, 20, 20); pop();
}
}
noLoop();
}
function drawGrid() {
for(x = 0; x < width + 480; x+= 120) { if(x%240 == 0 || x == 0) {
stroke(0); } else {
stroke(220); }
line(x, 0, x-480, height); line(x-480, 0, x, height); }
}
function drawTile(x, y) {
push();
translate(x, y); fill(255);
stroke(0);
strokeWeight(1);
for(j = 0; j < 4; j++){ push();
rotate(j*PI/2);
fill(230);
quad(-100, 0, -50, -12, 15, 0, -50, 12); stroke(0);
strokeWeight(1);
line(-70, 0, -40, 0); pop();
}
strokeWeight(1.5);
rectMode(CENTER);
fill(179, 91, 141); rect(0, 0, 65, 65); fill(175, 162, 208); for(i = 0; i < 4; i++) {
push();
rotate(i*PI/2);
translate(-25, 0);
quad(-25, 0, 0, -20, 20, 0, 0, 20); pop();
}
fill(255, 220, 80); quad(-25, 0, 0, -25, 25, 0, 0, 25); pop();
}
The original inspiration for this paper was the old victorian floral wallpaper style… I tried to work in an organic subject and organic style with distinctly computer generated graphics (using geometric, sharp lines).

My first sketches were playing with overlapping diamond shapes, and feeling out what could be feasible to accomplish with my code.
As I started trying to implement these sketches and concepts into practice, I had to cut out some details I originally wanted to be a part of the wallpaper. The canvas I was working with was a 480×480 block, not a wall, and quickly became cluttered. So, my artistic direction for the project quickly adapted to a simpler aesthetic.
To be honest, the bulk of the work in this project for me was deciding what details to keep, and what to get rid of… I think I was moderately successful. I think this is a project I will return to, and see if I can keep it from being cluttered, but still improve the aesthetics of it. Currently, I think the color scheme and horizontal vs. diagonal lines are what carry the appeal of this wallpaper.
SaveSaveSaveSave