From 4280fad5360e6e886754b906e24a2661c7ae4bbe Mon Sep 17 00:00:00 2001 From: brelee2222 Date: Thu, 27 Jun 2024 11:56:15 -0700 Subject: [PATCH] clock size update --- src/frontend/dash/circlePacker.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/frontend/dash/circlePacker.ts b/src/frontend/dash/circlePacker.ts index 765007d..423763d 100644 --- a/src/frontend/dash/circlePacker.ts +++ b/src/frontend/dash/circlePacker.ts @@ -179,9 +179,8 @@ export class ClockCircle extends Circle{ } updateSize() { - this.r = Math.sqrt(.2) * 10; - - this.r = Math.max(...placedCircles.map(circle => circle.r)); + this.r = 30; + this.r = Math.max(...placedCircles.map(circle => circle.r * 1.5)); } }