PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
math
/** * Linear interpolation. * IMPORTANT:will return `Infinity` if numbers overflow Number.MAX_VALUE */ function lerp(ratio, start, end){ return start + (end - start) * ratio; } module.exports = lerp;
[-] loop.js
[edit]
[-] norm.js
[edit]
[+]
..
[-] clamp.js
[edit]
[-] round.js
[edit]
[-] countSteps.js
[edit]
[-] isNear.js
[edit]
[-] inRange.js
[edit]
[-] lerp.js
[edit]
[-] ceil.js
[edit]
[-] map.js
[edit]
[-] floor.js
[edit]