PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
src
/
math
define(function(){ /** * Count number of full steps. */ function countSteps(val, step, overflow){ val = Math.floor(val / step); if (overflow) { return val % overflow; } return val; } return countSteps; });
[-] 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]