From 4fa9c1d1f10fefa7a52bf12e690058e31c304b17 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sat, 8 Apr 2023 18:49:47 -0500 Subject: [PATCH] Make circle more circular --- commands/drawDesign.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index c177188..bf3fddc 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -171,7 +171,7 @@ function design4(input) { for (let i = 0; i <= 2 * radius; i++) { if (i != mid) { // for vertical movement - for (let j = 0; j <= 2 * radius; j++) { + for (let j = 0; j <= 1 * radius; j++) { dist = Math.sqrt( (i - radius) * (i - radius) +