xxxxxxxxxx
60
function setup() {
createCanvas(600, 600);
background(220);
noStroke();
fill(0);
spouts.push({
x: width / 2,
y: height - 1,
tgt: null,
_t: -HALF_PI,
_step: PI / 64,
c:0,
});
}
let spouts = [];
function draw() {
for (let i = spouts.length - 1; i >= 0; i--) {
let s = spouts[i];
fill(s.c);
circle(s.x, s.y, 3);
// console.log(sx,sy);
if (random() > 0.8 && s.tgt == null) s.tgt = random(-PI, 0);
if (s.tgt == null) s._t = -HALF_PI;
s.x += cos(s._t);
s.y += sin(s._t);
if (
(s._t + s._step < s.tgt && s._t > s.tgt) ||
(s._t + s._step > s.tgt && s._t < s.tgt)
) {
s.tgt = null;
if (random() > 0.75 && spouts.length < 500)
spouts.push({
x: s.x,
y: s.y,
tgt: null,
_t: -HALF_PI,
_step: PI / 64,
c: s.c + 25,
});
// circle(sx, sy, 20);
}
if (s._t < s.tgt) s._t += s._step;
if (s._t > s.tgt) s._t -= s._step;
if (s.y < 0 || s.y > height - 1 || s.x < 0 || s.x > width - 1) {
spouts.splice(i, 1);
}
}
if (spouts.length == 0) {
console.log("done");
noLoop();
}
}