Skip to content

Commit

Permalink
Bus stop circle size changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Brelee2222 committed Aug 17, 2024
1 parent d2c2732 commit 028c100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/dash/circlePacker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 028c100

Please sign in to comment.