PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
bower-config
/
node_modules
/
mout
/
src
/
math
define(function(){ /** * Gets normalized ratio of value inside range. */ function norm(val, min, max){ if (val < min || val > max) { throw new RangeError('value (' + val + ') must be between ' + min + ' and ' + max); } return val === max ? 1 : (val - min) / (max - min); } return norm; });
[-] loop.js
[edit]
[-] norm.js
[edit]
[-] overflow.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]