MCPcopy
hub / github.com/phaserjs/phaser / In

Function In

src/math/easing/expo/In.js:17–20  ·  view source on GitHub ↗
(v)

Source from the content-addressed store, hash-verified

15 * @return {number} The eased value.
16 */
17var In = function (v)
18{
19 return Math.pow(2, 10 * (v - 1)) - 0.001;
20};
21
22module.exports = In;

Callers 10

In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50
In.test.jsFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected