pick and place editing working, saving and loading working
This commit is contained in:
3
math/clamp.ts
Normal file
3
math/clamp.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function clamp(value: number, min: number, max: number) {
|
||||
return Math.min(Math.max(value, min), max);
|
||||
}
|
Reference in New Issue
Block a user