Zoomable Canvas

This commit is contained in:
Emma
2023-02-15 17:45:37 -07:00
parent fbcffcde27
commit c767c09776
7 changed files with 623 additions and 38 deletions

2
timing/EaseInOut.ts Normal file
View File

@@ -0,0 +1,2 @@
export const easeInOut = (x: number) =>
x < 0.5 ? 4 * x * x * x : 1 - Math.pow(-2 * x + 2, 3) / 2;