💀 Removes the lerp function in farvor of three

This commit is contained in:
Rune Harlyk
2024-02-23 12:24:24 +01:00
parent e4e2c24407
commit eb5d5b90e1
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -1,3 +0,0 @@
export const lerp = (start: number, end: number, amt: number) => {
return (1 - amt) * start + amt * end;
};