xxxxxxxxxx
34
let blob;
let blobs = [];
let startingRadius;
function setup() {
createCanvas(700, 700);
startingRadius = 32;
blob = new Blob(0, 0, startingRadius);
for (let i = 0; i < 500; i++) {
blobs[i] = new Blob(random(-width*4, width*4), random(-height*4, height*4), floor(random(8, startingRadius)));
}
}
function draw() {
background(0);
translate(width/2 , height/2);
scale(startingRadius / blob.r);
translate(-blob.pos.x, -blob.pos.y);
for (let i = blobs.length - 1; i >= 0 ; i--) {
blobs[i].show();
if(blob.eats(blobs[i])){
blobs.splice(i,1);
}
}
blob.show();
blob.update();
}