this repo has no description
at main 83 B view raw
1export let lerp = ( a: number, b: number, t: number ): number => a + ( b - a ) * t;