xxxxxxxxxx
50
//https://inconvergent.net/generative/linetrace/
function setup() {
createCanvas(800, 800);
background(220);
let x = width / 2;
for (let y = 0; y < height; y++) {
ellipse(x, y, 2, 2);
if (random() > 0.75) {
let d = random([-1, 0, 0, 1]);
if (random() > 0.3) x += d;
}
particles.push({ x: x, y: y });
}
_x = width / 2 + 4;
}
let particles = [];
let _x;
let step = 0;
function draw() {
stroke(20,20,20,100);
for (let y = 0; y < height; y++) {
let xoff;
if (step == 0)
xoff = particles[y].x - width / 2;
else xoff = width/2 - particles[y].x
ellipse(_x + xoff, y, 1, 1);
if (random() > 0.85) {
let d = random([-1, 0, 0, 1]);
if (random() > 0.3) particles[y].x += d;
}
}
if (step == 0) _x += random(2, 6);
else _x -= random(2, 6);
if (_x > width - 1) {
step++;
_x = width / 2 - 4;
}
if (_x <= 0) {
console.log("done");
noLoop();
}
}