progress status and progress communication done
This commit is contained in:
3
src/util/mathUtil.ts
Normal file
3
src/util/mathUtil.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const clamp = (val: number, min: number, max: number) => {
|
||||
return val <= min ? min : val >= max ? max : val;
|
||||
};
|
Reference in New Issue
Block a user