xxxxxxxxxx
45
xoff = 0;
i = 3;
y1 = 550;
x1 = 350;
function setup() {
createCanvas(700, 700);
background(238, 237, 233);
noFill();
strokeWeight(20);
r = random(0, 200);
g = random(0, 200);
b = random(0, 200);
s = random(300, 500);
h = random(150, 300)
}
function draw() {
xoff = xoff + 0.004;
n = noise(xoff) * 2;
if (y1 > 540) {
stroke(245, 203, 174);
} else if (y1 < 540 && y1 > s) {
stroke(238 + (18 * n), 228 + (18 * n), 222 + (18 * n));
} else if (y1 < s) {
stroke(r * n, g * n, b * n);
}
rad = random(50, 500);
var angle = TAU / rad;
var x = 10 * (sin(angle * i) * rad);
i = i + 0.01;
if (x * n < 100) {
loop();
} else {
ellipse(350, y1, x * n, x * n / 3);
y1 = y1 - 1;
}
if (y1 < h) {
noLoop();
}
}