xxxxxxxxxx
53
let radius;
let ps;
function setup() {
createCanvas(windowWidth, windowHeight);
radius = 8;
ps = [];
for (let c = 0; c < radius; c++) {
ps.push({
x: random(radius, width - radius),
y: random(radius, height - radius),
vx: random(-1, 1),
vy: random(-1, 1),
});
}
ps.push({
x: random(radius, width - radius),
y: random(radius, height - radius),
vx: random(-3, 3),
vy: random(-3, 3),
});
}
function draw() {
background(220, 20, 120);
fill(255);
stroke(0);
strokeWeight(1);
for (let i = 0; i < ps.length; i++) {
let p = ps[i];
if (p.x < radius || p.x > width - radius) {
p.vx *= -1;
}
if (p.y < radius || p.y > height - radius) {
p.vy *= -1;
}
p.x += p.vx;
p.y += p.vy;
let hAngle = atan2(p.vy, p.vx);
push();
translate(p.x, p.y);
rotate(hAngle);
triangle(-radius, radius, -radius, -radius, 2 * radius, 0);
pop();
}
}