2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-10-06 03:52:41 +00:00
|
|
|
/**
|
2019-12-04 20:34:09 +00:00
|
|
|
* Calculate a per-ms speed from a distance and time (given in seconds).
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.GetSpeed
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2019-12-04 20:34:09 +00:00
|
|
|
* @param {number} distance - The distance.
|
|
|
|
* @param {integer} time - The time, in seconds.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2019-12-04 20:34:09 +00:00
|
|
|
* @return {number} The speed, in distance per ms.
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* // 400px over 1 second is 0.4 px/ms
|
|
|
|
* Phaser.Math.GetSpeed(400, 1) // -> 0.4
|
2017-10-06 03:52:41 +00:00
|
|
|
*/
|
2017-04-27 16:03:19 +00:00
|
|
|
var GetSpeed = function (distance, time)
|
|
|
|
{
|
|
|
|
return (distance / time) / 1000;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GetSpeed;
|