From 028c10092b69ccd2dd3d6a94ea2d55090ccf6833 Mon Sep 17 00:00:00 2001 From: brelee2222 Date: Fri, 16 Aug 2024 20:15:32 -0700 Subject: [PATCH] Bus stop circle size changes --- src/frontend/dash/circlePacker.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/dash/circlePacker.ts b/src/frontend/dash/circlePacker.ts index 4331502..da044a8 100644 --- a/src/frontend/dash/circlePacker.ts +++ b/src/frontend/dash/circlePacker.ts @@ -163,8 +163,8 @@ export class ClockCircle extends Circle{ } updateSize() { - this.r = 30; - this.r = Math.max(...placedCircles.map(circle => circle.r * 1.5)); + this.r = 20; + this.r = Math.max(...placedCircles.map(circle => circle.r * 1.2)); } }