progress status and progress communication done

This commit is contained in:
2024-01-12 12:09:28 +01:00
parent 4569d35a65
commit 756ae1be58
7 changed files with 122 additions and 44 deletions

3
src/util/mathUtil.ts Normal file
View File

@@ -0,0 +1,3 @@
export const clamp = (val: number, min: number, max: number) => {
return val <= min ? min : val >= max ? max : val;
};