xxxxxxxxxx
31
// Reference: https://thecodingtrain.com/tracks/the-nature-of-code-2/noc/2-forces/6-mutual-attraction
// Initialize movers array and attractor
let movers = [];
let attractor;
function setup() {
createCanvas(400, 400);
background(10);
// Assign an attractor to the center
attractor = new Attractor(width / 2, height / 2, 200);
// Assign movers around the attractor
movers[0] = new Mover(300, 200, 0, 5, 10);
movers[1] = new Mover(100, 200, 0, -5, 10);
movers[2] = new Mover(200, 300, -5, 0, 10);
movers[3] = new Mover(200, 100, 5, 0, 10);
}
function draw() {
background(0, 10);
// Showing and Updating the movers
for (let i = 0; i < 4; i++) {
movers[i].update();
movers[i].show();
attractor.attract(movers[i]);
}
}