Files

4 lines
82 B
JavaScript
Raw Permalink Normal View History

export function lerp(start, end, amt){
return (1 - amt) * start + amt * end
}