xxxxxxxxxx
39
i = 0;
x1 = 600;
y1 = 600;
xoff = 0
function setup() {
createCanvas(800, 800);
background(40);
noFill();
strokeWeight(0.5)
r = random(1, 20)
}
function draw() {
let shades = ["#F7003A", "#B08C3B", "#76A49F", "#E1E4D8"];
let shade = random(shades);
cS = color(shade);
stroke(cS, 10);
xoff = xoff + 0.1;
let n = noise(xoff) * 20;
var angle = TAU / 20;
var x = cos(angle * i) * 30;
var y = cos(angle * i) * 30;
i = i + 0.1 * n;
ellipse(x1, y1, x + n, y+n);
x1 = x1 - r;
if (x1 < 200) {
x1 = 600;
y1 = y1 - 30;
}
if (y1 < 200) {
noLoop();
}
}