From ca9a859e75bf637c3fc1be435e2ce187f58883d0 Mon Sep 17 00:00:00 2001 From: Sander Hautvast Date: Fri, 9 Dec 2022 16:33:16 +0100 Subject: [PATCH] little to the right --- src/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/index.js b/src/js/index.js index 4827a49..57caf47 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -52,7 +52,7 @@ import '../css/app.css'; let num_clouds_in_cluster = (Math.floor(num_clouds / num_clusters)); for (let i = 0; i < num_clouds; i++) { if (i % num_clouds_in_cluster === 0) { - cluster_x = 100 + Math.random() * width; + cluster_x = 200 + Math.random() * width; cluster_y = 100 + Math.random() * height; cluster_size = Math.random() * 150; }