//Meredith Newman
//Section A
//mjnewman@andrew.cmu.edu
//Project-05 Wallpaper
function setup() {
createCanvas(470, 470);
}
function draw() {
background(100, 200, 205);
for (var y = 0; y < height+50; y += 120) {
for (var x = 0; x < width+50; x += 120) {
//Top Half-Head
noStroke();
fill(290, 130, 200);//pink
ellipse(x + 50, y + 50, 50, 50);
//cover up for bottom half of circle
fill(100, 200, 205);
rect(x + 25, y + 50, 50, 25);
//Tentacles
stroke(290, 130, 200);
strokeWeight(4);
line(x + 30, y + 50, x + 35, y + 80);
line(x + 42, y + 50, x + 48, y + 90);
line(x + 54, y + 50, x + 57, y + 72);
line(x + 66, y + 50, x + 71, y + 82);
//Head Circle
noStroke();
fill(240, 80, 150);//slightly darker pink
ellipse(x + 56, y + 33, 15, 8);//oblong circle
//Bubbles
fill(120, 220, 225)//slightly lighter blue
ellipse(x + 90, y + 55, 10, 10);//medium bubble
ellipse(x + 78, y + 20, 20, 20);//big top bubble
ellipse(x + 20, y + 90, 8, 8);//small bottom left bubble
ellipse(x + 33, y + 100, 5, 5);//tiny bubble
}
}
noLoop();
}
I first had the idea to do a pattern of jellyfish. While, sketching actual jellyfish, I couldn’t stop thinking about Spongebob Squarepants and when he would go jelly fishing. So that definitely informed my color choice and somewhat of the graphic translation.