repo stringlengths 5 106 | file_url stringlengths 78 301 | file_path stringlengths 4 211 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:56:49 2026-01-05 02:23:25 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/tweens/typedefs/GetStartCallback.js | src/tweens/typedefs/GetStartCallback.js | /**
* @callback Phaser.Types.Tweens.GetStartCallback
* @since 3.18.0
*
* @param {any} target - The tween target.
* @param {string} key - The target property.
* @param {number} value - The current value of the target property.
* @param {number} targetIndex - The index of the target within the Tween.
* @param {nu... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/tweens/typedefs/GetActiveCallback.js | src/tweens/typedefs/GetActiveCallback.js | /**
* @callback Phaser.Types.Tweens.GetActiveCallback
* @since 3.19.0
*
* @param {any} target - The tween target.
* @param {string} key - The target property.
* @param {number} value - The current value of the target property.
* @param {number} targetIndex - The index of the target within the Tween.
* @param {n... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/tweens/typedefs/TweenOnYoyoCallback.js | src/tweens/typedefs/TweenOnYoyoCallback.js | /**
* @callback Phaser.Types.Tweens.TweenOnYoyoCallback
* @since 3.18.0
*
* @param {Phaser.Tweens.Tween} tween - A reference to the Tween.
* @param {any} target - The current target of the Tween. If this Tween has multiple targets, this will be a reference to just the single one being updated prior to this callbac... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/tweens/typedefs/GetEndCallback.js | src/tweens/typedefs/GetEndCallback.js | /**
* @callback Phaser.Types.Tweens.GetEndCallback
* @since 3.18.0
*
* @param {any} target - The tween target.
* @param {string} key - The target property.
* @param {number} value - The current value of the target property.
* @param {number} targetIndex - The index of the target within the Tween.
* @param {numb... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/tweens/typedefs/TweenDataConfig.js | src/tweens/typedefs/TweenDataConfig.js | /**
* @typedef {object} Phaser.Types.Tweens.TweenDataConfig
* @since 3.0.0
*
* @property {any} target - The target to tween.
* @property {number} index - The target index within the Tween targets array.
* @property {string} key - The property of the target being tweened.
* @property {?Phaser.Types.Tweens.GetActi... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/CacheManager.js | src/cache/CacheManager.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var BaseCache = require('./BaseCache');
var Class = require('../utils/Class');
var GameEvents = require('../core/events');
/**
* @classdesc
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/BaseCache.js | src/cache/BaseCache.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Class = require('../utils/Class');
var CustomMap = require('../structs/Map');
var EventEmitter = require('eventemitter3');
var Events = requ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/index.js | src/cache/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Cache
*/
module.exports = {
BaseCache: require('./BaseCache'),
CacheManager: require('./CacheManager'),
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/events/ADD_EVENT.js | src/cache/events/ADD_EVENT.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Cache Add Event.
*
* This event is dispatched by any Cache that extends the BaseCache each time a new object is added to it.
*
* ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/events/index.js | src/cache/events/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Cache.Events
*/
module.exports = {
ADD: require('./ADD_EVENT'),
REMOVE: require('./REMOVE_EVENT')
};
| javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/cache/events/REMOVE_EVENT.js | src/cache/events/REMOVE_EVENT.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The Cache Remove Event.
*
* This event is dispatched by any Cache that extends the BaseCache each time an object is removed from it.
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/MinSub.js | src/math/MinSub.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Subtract an `amount` from `value`, limiting the minimum result to `min`.
*
* @function Phaser.Math.MinSub
* @since 3.0.0
*
* @param ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Average.js | src/math/Average.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the mean average of the given values.
*
* @function Phaser.Math.Average
* @since 3.0.0
*
* @param {number[]} values - The ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/ToXY.js | src/math/ToXY.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Vector2 = require('./Vector2');
/**
* Returns a Vector2 containing the x and y position of the given index in a `width` x `height` sized g... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/TransformXY.js | src/math/TransformXY.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Vector2 = require('./Vector2');
/**
* Takes the `x` and `y` coordinates and transforms them into the same space as
* defined by the posit... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/FromPercent.js | src/math/FromPercent.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Clamp = require('./Clamp');
/**
* Return a value based on the range between `min` and `max` and the percentage given.
*
* @function Phas... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/CeilTo.js | src/math/CeilTo.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Ceils to some place comparative to a `base`, default is 10 for decimal place.
*
* The `place` is represented by the power applied to `b... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RotateAround.js | src/math/RotateAround.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Rotate a `point` around `x` and `y` to the given `angle`, at the same distance.
*
* In polar notation, this maps a point from (r, t) to... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/FloatBetween.js | src/math/FloatBetween.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Generate a random floating point number between the two given bounds, minimum inclusive, maximum exclusive.
*
* @function Phaser.Math.F... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RandomXY.js | src/math/RandomXY.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Compute a random unit vector.
*
* Computes random values for the given vector between -1 and 1 that can be used to represent a directio... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RotateVec3.js | src/math/RotateVec3.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Vector3 = require('../math/Vector3');
var Matrix4 = require('../math/Matrix4');
var Quaternion = require('../math/Quaternion');
var tmpMat4... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/GetSpeed.js | src/math/GetSpeed.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate a per-ms speed from a distance and time (given in seconds).
*
* @function Phaser.Math.GetSpeed
* @since 3.0.0
*
* @param {... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/SmoothStep.js | src/math/SmoothStep.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate a smooth interpolation percentage of `x` between `min` and `max`.
*
* The function receives the number `x` as an argument and... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Clamp.js | src/math/Clamp.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Force a value within the boundaries by clamping it to the range `min`, `max`.
*
* @function Phaser.Math.Clamp
* @since 3.0.0
*
* @pa... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Within.js | src/math/Within.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Checks if the two values are within the given `tolerance` of each other.
*
* @function Phaser.Math.Within
* @since 3.0.0
*
* @param ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/index.js | src/math/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var CONST = require('./const');
var Extend = require('../utils/object/Extend');
/**
* @namespace Phaser.Math
*/
var PhaserMath = {
// ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RoundAwayFromZero.js | src/math/RoundAwayFromZero.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Round a given number so it is further away from zero. That is, positive numbers are rounded up, and negative numbers are rounded down.
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/IsEvenStrict.js | src/math/IsEvenStrict.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Check if a given value is an even number using a strict type check.
*
* @function Phaser.Math.IsEvenStrict
* @since 3.0.0
*
* @param... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/SinCosTableGenerator.js | src/math/SinCosTableGenerator.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Generate a series of sine and cosine values.
*
* @function Phaser.Math.SinCosTableGenerator
* @since 3.0.0
*
* @param {number} lengt... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Wrap.js | src/math/Wrap.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Wrap the given `value` between `min` and `max`.
*
* @function Phaser.Math.Wrap
* @since 3.0.0
*
* @param {number} value - The value ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Vector3.js | src/math/Vector3.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
// Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
var ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/CatmullRom.js | src/math/CatmullRom.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates a Catmull-Rom value from the given points, based on an alpha of 0.5.
*
* @function Phaser.Math.CatmullRom
* @since 3.0.0
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Vector2.js | src/math/Vector2.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
// Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
var ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Matrix3.js | src/math/Matrix3.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
// Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
var ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/MaxAdd.js | src/math/MaxAdd.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Add an `amount` to a `value`, limiting the maximum result to `max`.
*
* @function Phaser.Math.MaxAdd
* @since 3.0.0
*
* @param {numb... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Bernstein.js | src/math/Bernstein.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Factorial = require('./Factorial');
/**
* Calculates the Bernstein basis from the three factorial coefficients.
*
* @function Phaser.Mat... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RandomXYZW.js | src/math/RandomXYZW.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Compute a random four-dimensional vector.
*
* @function Phaser.Math.RandomXYZW
* @since 3.0.0
*
* @param {Phaser.Math.Vector4} vec4 ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RotateTo.js | src/math/RotateTo.js | /**
* @author samme
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Position a `point` at the given `angle` and `distance` to (`x`, `y`).
*
* @function Phaser.Math.RotateTo
* @since 3.24.0
*
* @generic {Phaser.Types.Math.Vect... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/SmootherStep.js | src/math/SmootherStep.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate a smoother interpolation percentage of `x` between `min` and `max`.
*
* The function receives the number `x` as an argument a... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Difference.js | src/math/Difference.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates the positive difference of two given numbers.
*
* @function Phaser.Math.Difference
* @since 3.0.0
*
* @param {number} a -... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RandomXYZ.js | src/math/RandomXYZ.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Compute a random position vector in a spherical area, optionally defined by the given radius.
*
* @function Phaser.Math.RandomXYZ
* @s... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Between.js | src/math/Between.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Compute a random integer between the `min` and `max` values, inclusive.
*
* @function Phaser.Math.Between
* @since 3.0.0
*
* @param ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/IsEven.js | src/math/IsEven.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Check if a given value is an even number.
*
* @function Phaser.Math.IsEven
* @since 3.0.0
*
* @param {number} value - The number to ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/const.js | src/math/const.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var MATH_CONST = {
/**
* The value of PI * 2.
*
* @name Phaser.Math.PI2
* @type {number}
* @since 3.0.0
*/
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Euler.js | src/math/Euler.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Clamp = require('./Clamp');
var Class = require('../utils/Class');
var Matrix4 = require('./Matrix4');
var NOOP = require('../utils/NOOP');
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/DegToRad.js | src/math/DegToRad.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var CONST = require('./const');
/**
* Convert the given angle from degrees, to the equivalent angle in radians.
*
* @function Phaser.Math.De... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Factorial.js | src/math/Factorial.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates the factorial of a given number for integer values greater than 0.
*
* @function Phaser.Math.Factorial
* @since 3.0.0
*
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Vector4.js | src/math/Vector4.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
// Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
var ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Percent.js | src/math/Percent.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Work out what percentage `value` is of the range between `min` and `max`.
* If `max` isn't given then it will return the percentage of `... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RadToDeg.js | src/math/RadToDeg.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var CONST = require('./const');
/**
* Convert the given angle in radians, to the equivalent angle in degrees.
*
* @function Phaser.Math.RadT... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/FloorTo.js | src/math/FloorTo.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Floors to some place comparative to a `base`, default is 10 for decimal place.
*
* The `place` is represented by the power applied to `... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RotateAroundDistance.js | src/math/RotateAroundDistance.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Rotate a `point` around `x` and `y` by the given `angle` and `distance`.
*
* In polar notation, this maps a point from (r, t) to (dista... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Quaternion.js | src/math/Quaternion.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
// Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
var ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/LinearXY.js | src/math/LinearXY.js | /**
* @author Greg McLean <GregDevProjects>
* @copyright 2021 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Interpolates two given Vectors and returns a new Vector between them.
*
* Does not modify either of the passed Vectors.
*
* @function Phaser... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Matrix4.js | src/math/Matrix4.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Class = require('../utils/Class');
var Vector3 = require('./Vector3');
/**
* @ignore
*/
var EPSILON = 0.000001;
/**
* @classdesc
* A f... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | true |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/RoundTo.js | src/math/RoundTo.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Round a value to the given precision.
*
* For example:
*
* ```javascript
* RoundTo(123.456, 0) = 123
* RoundTo(123.456, 1) = 120
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Median.js | src/math/Median.js | /**
* @author Vladislav Forsh <vlad@robowhale.com>
* @copyright 2021 RoboWhale
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the median of the given values. The values are sorted and the middle value is returned.
* In case of an even number of values, the ave... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Rotate.js | src/math/Rotate.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Rotate a given point by a given angle around the origin (0, 0), in an anti-clockwise direction.
*
* @function Phaser.Math.Rotate
* @si... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/Linear.js | src/math/Linear.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates a linear (interpolation) value over t.
*
* @function Phaser.Math.Linear
* @since 3.0.0
*
* @param {number} p0 - The first... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceChebyshev.js | src/math/distance/DistanceChebyshev.js | /**
* @author samme
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the Chebyshev distance between two sets of coordinates (points).
*
* Chebyshev distance (or chessboard distance) is the maximum of the horizontal and ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceBetween.js | src/math/distance/DistanceBetween.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the distance between two sets of coordinates (points).
*
* @function Phaser.Math.Distance.Between
* @since 3.0.0
*
* @para... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceSnake.js | src/math/distance/DistanceSnake.js | /**
* @author samme
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the snake distance between two sets of coordinates (points).
*
* Snake distance (rectilinear distance, Manhattan distance) is the sum of the horizonta... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceBetweenPoints.js | src/math/distance/DistanceBetweenPoints.js | /**
* @author samme
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the distance between two points.
*
* @function Phaser.Math.Distance.BetweenPoints
* @since 3.22.0
*
* @param {Phaser.Types.Math.Vector2Like} a - Th... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/index.js | src/math/distance/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Distance
*/
module.exports = {
Between: require('./DistanceBetween'),
BetweenPoints: require('./Distanc... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceBetweenPointsSquared.js | src/math/distance/DistanceBetweenPointsSquared.js | /**
* @author samme
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the squared distance between two points.
*
* @function Phaser.Math.Distance.BetweenPointsSquared
* @since 3.22.0
*
* @param {Phaser.Types.Math.Vect... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistanceSquared.js | src/math/distance/DistanceSquared.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the distance between two sets of coordinates (points), squared.
*
* @function Phaser.Math.Distance.Squared
* @since 3.0.0
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/distance/DistancePower.js | src/math/distance/DistancePower.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculate the distance between two sets of coordinates (points) to the power of `pow`.
*
* @function Phaser.Math.Distance.Power
* @sin... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/index.js | src/math/easing/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing
*/
module.exports = {
Back: require('./back'),
Bounce: require('./bounce'),
Circular: requir... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/EaseMap.js | src/math/easing/EaseMap.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Back = require('./back');
var Bounce = require('./bounce');
var Circular = require('./circular');
var Cubic = require('./cubic');
var Elasti... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/linear/index.js | src/math/easing/linear/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
module.exports = require('./Linear');
| javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/linear/Linear.js | src/math/easing/linear/Linear.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Linear easing (no variation).
*
* @function Phaser.Math.Easing.Linear
* @since 3.0.0
*
* @param {number} v - The value to be tweened... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quartic/index.js | src/math/easing/quartic/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Quartic
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quartic/InOut.js | src/math/easing/quartic/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quartic ease-in/out.
*
* @function Phaser.Math.Easing.Quartic.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quartic/In.js | src/math/easing/quartic/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quartic ease-in.
*
* @function Phaser.Math.Easing.Quartic.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quartic/Out.js | src/math/easing/quartic/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quartic ease-out.
*
* @function Phaser.Math.Easing.Quartic.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/back/index.js | src/math/easing/back/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Back
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./InO... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/back/InOut.js | src/math/easing/back/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Back ease-in/out.
*
* @function Phaser.Math.Easing.Back.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
* @pa... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/back/In.js | src/math/easing/back/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Back ease-in.
*
* @function Phaser.Math.Easing.Back.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
* @param {nu... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/back/Out.js | src/math/easing/back/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Back ease-out.
*
* @function Phaser.Math.Easing.Back.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
* @param {... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/expo/index.js | src/math/easing/expo/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Expo
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./InO... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/expo/InOut.js | src/math/easing/expo/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Exponential ease-in/out.
*
* @function Phaser.Math.Easing.Expo.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/expo/In.js | src/math/easing/expo/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Exponential ease-in.
*
* @function Phaser.Math.Easing.Expo.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* ... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/expo/Out.js | src/math/easing/expo/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Exponential ease-out.
*
* @function Phaser.Math.Easing.Expo.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quintic/index.js | src/math/easing/quintic/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Quintic
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quintic/InOut.js | src/math/easing/quintic/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quintic ease-in/out.
*
* @function Phaser.Math.Easing.Quintic.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quintic/In.js | src/math/easing/quintic/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quintic ease-in.
*
* @function Phaser.Math.Easing.Quintic.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/quintic/Out.js | src/math/easing/quintic/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Quintic ease-out.
*
* @function Phaser.Math.Easing.Quintic.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/bounce/index.js | src/math/easing/bounce/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Bounce
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./I... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/bounce/InOut.js | src/math/easing/bounce/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Bounce ease-in/out.
*
* @function Phaser.Math.Easing.Bounce.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/bounce/In.js | src/math/easing/bounce/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Bounce ease-in.
*
* @function Phaser.Math.Easing.Bounce.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @re... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/bounce/Out.js | src/math/easing/bounce/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Bounce ease-out.
*
* @function Phaser.Math.Easing.Bounce.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/cubic/index.js | src/math/easing/cubic/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Cubic
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('./In... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/cubic/InOut.js | src/math/easing/cubic/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Cubic ease-in/out.
*
* @function Phaser.Math.Easing.Cubic.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/cubic/In.js | src/math/easing/cubic/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Cubic ease-in.
*
* @function Phaser.Math.Easing.Cubic.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @retu... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/cubic/Out.js | src/math/easing/cubic/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Cubic ease-out.
*
* @function Phaser.Math.Easing.Cubic.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
* @re... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/circular/index.js | src/math/easing/circular/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Circular
*/
module.exports = {
In: require('./In'),
Out: require('./Out'),
InOut: require('.... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/circular/InOut.js | src/math/easing/circular/InOut.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Circular ease-in/out.
*
* @function Phaser.Math.Easing.Circular.InOut
* @since 3.0.0
*
* @param {number} v - The value to be tweened... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/circular/In.js | src/math/easing/circular/In.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Circular ease-in.
*
* @function Phaser.Math.Easing.Circular.In
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
*... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/circular/Out.js | src/math/easing/circular/Out.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Circular ease-out.
*
* @function Phaser.Math.Easing.Circular.Out
* @since 3.0.0
*
* @param {number} v - The value to be tweened.
*
... | javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
phaserjs/phaser | https://github.com/phaserjs/phaser/blob/a9965625f49cf366584f454556b039e06e8adad6/src/math/easing/stepped/index.js | src/math/easing/stepped/index.js | /**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Math.Easing.Stepped
*/
module.exports = require('./Stepped');
| javascript | MIT | a9965625f49cf366584f454556b039e06e8adad6 | 2026-01-04T14:59:32.525416Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.