From fa49f1bb19ba2f2d020cbe203ae39b5830ec1201 Mon Sep 17 00:00:00 2001 From: Mehdi Necibi Date: Thu, 21 Aug 2025 13:48:10 +0200 Subject: [PATCH] make the boids bigger --- boid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boid.js b/boid.js index ceea4c5..4d329f7 100644 --- a/boid.js +++ b/boid.js @@ -8,7 +8,7 @@ export default class Boid { this.acceleration = p5.createVector() this.maxForce = 0.2 this.maxSpeed = 4 - this.r = 10 + this.r = 12 } align(p5, boids) {