Generate overview based on subproject size

This commit is contained in:
Dennis Schoepf 2021-07-21 15:27:04 +02:00
parent 4053961357
commit 9790361f24
9 changed files with 109 additions and 24 deletions

View file

@ -6,7 +6,7 @@ export class Edge {
y: number;
r: number;
constructor(x: number, y: number, r: number) {
constructor({ x, y, r }: { x: number; y: number; r: number }) {
this.x = x;
this.y = y;
this.r = r;