xxxxxxxxxx
48
let particle = [];
let mass = 10;
let a = 360;
function setup() {
createCanvas(windowWidth, windowHeight);
// background(255);
angleMode(DEGREES);
for (let i = 0; i < 10; i++) {
let m = mass;
let x = m * cos(a);
let y = m * sin(a);
particle[i] = new Particle(x, y, m);
}
}
function draw() {
background(220);
translate(width / 2, height / 2);
for (let p of particle) {
for (let other of particle) {
if (p != other) {
p.attract(other);
strokeWeight(1);
let d = dist(p.pos.x, p.pos.y, other.pos.x, other.pos.y);
if (d > 100 && d < 150 ) {
/* draw triangle */
noStroke();
fill(p.colAlpha);
triangle(p.pos.x, p.pos.y, other.pos.x, other.pos.y, 0, 0)
/* draw lines */
// stroke(p.colAlpha)
// line(p.pos.x, p.pos.y, other.pos.x, other.pos.y);
}
}
}
}
for (let p of particle) {
p.show();
p.update();
}
}