sketch
//Shaun Murray, Section B
var x = 100
var y = 100
function setup() {
createCanvas(500, 500);
}
function draw() {
background(0, 200, 255);
//cloud set 1
for (x = -40; x <= width - 95; x += 190) {
for (y = -35; y <= height - 100; y += 75){
cloud(x, y);
}
noLoop();
}
//cloud set 2
for (x = 50; x <= width - 95; x += 190) {
for (y = 8; y <= height - 100; y += 75){
cloud(x, y);
}
noLoop();
}
}
function cloud(x, y) {
push();
translate(x, y);
//cloud
noStroke();
fill(255);
ellipse(95, 83, 43, 43);
fill(245);
ellipse(97, 85, 40, 40);
fill(255);
ellipse(118, 88, 30, 30);
fill(245);
ellipse(120, 90, 27, 27);
fill(255);
ellipse(80, 91, 25, 23);
fill(245);
ellipse(83, 94, 23, 20);
fill(255);
ellipse(100, 100, 80, 10);
fill(245);
ellipse(105, 101, 75, 8);
pop();
}
When I heard wallpaper, I thought of Andy’s room.