From e70f1e00ea7f5cc4da01d730573a81e7920c2b4a Mon Sep 17 00:00:00 2001 From: Juan Carlos Ponce Campuzano <37394697+jcponce@users.noreply.github.com> Date: Wed, 31 Jul 2024 07:48:41 +1000 Subject: [PATCH] Update mySketch.js --- sketches/my-pond/mySketch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sketches/my-pond/mySketch.js b/sketches/my-pond/mySketch.js index 1698fbb7..095baaa3 100644 --- a/sketches/my-pond/mySketch.js +++ b/sketches/my-pond/mySketch.js @@ -43,7 +43,7 @@ function setup() { cursor(HAND); - // Create fishes + // Create more independent fishes for (let n = 0; n < numBoids; n++) { let location2 = createVector(random(100, width - 100), random(100, height - 100)); let fish = new Fish(location2, random(1.0, 3.5), 0.2);