Skip to content

Commit

Permalink
Updated config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bence-toth committed Oct 24, 2024
1 parent c254ded commit 19395f4
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
const topRightElbow = [6, 8, 9];
const bottomLeftElbow = [1, 2, 4];
const mainDiagonal = [3, 5, 7];
const boxThresholds: { box: number; min?: number; max?: number }[] = [];

const boxThresholds: { box: number; min?: number; max?: number }[] = [
{ box: 9, max: 0.2 },
];
const topRightElbow = [6, 8, 9];
// const bottomLeftElbow = [1, 2, 4];
// const mainDiagonal = [3, 5, 7];

const boxGroupThresholds: {
boxes: number[];
min?: number;
max?: number;
}[] = [
{ boxes: topRightElbow, max: 0.35 },
{ boxes: bottomLeftElbow, min: 0 },
{ boxes: mainDiagonal, min: 0 },
];
}[] = [{ boxes: topRightElbow, max: 0.33 }];

export { boxThresholds, boxGroupThresholds };

0 comments on commit 19395f4

Please sign in to comment.