xxxxxxxxxx
38
let movers = [];
let twoattract;
let attractor;
function setup() {
createCanvas(600, 600);
//movers attracted to attracor
for (let i = 0; i < 6; i++) {
let x = random(width / 2);
let y = random(height / 2);
let m = random(50, 100);
movers[i] = new Mover(x, y, m);
}
attractor = new Attractor(width / 2.5, height / 2, 100);
background(0);
}
function draw() {
//3 movers attracted to each other
for (let t = 0; t < 3; t++) {
movers[t].update();
movers[t].show();
//attractor applies force to each other
attractor.attract(movers[t]);
for (let u = 0; u < 4; u++) {
for (let other of movers) {
if (t !== u) {
movers[t].TwoAttract(movers[u]);
}
}
}
}
attractor.show();
}