1
0
Fork 0
muzika-gromche/Frontend/src/easing.ts

4 lines
110 B
TypeScript

export function easeInOutQuad(x: number): number {
return x < 0.5 ? 2 * x * x : 1 - (-2 * x + 2) ** 2 / 2
}