Skip to content

Commit

Permalink
clock size update
Browse files Browse the repository at this point in the history
  • Loading branch information
Brelee2222 committed Jun 27, 2024
1 parent 250a5d7 commit 4280fad
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/frontend/dash/circlePacker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 4280fad

Please sign in to comment.