UNPKG

phaser4-rex-plugins

Version:
23 lines (20 loc) 674 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2019 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Calculates the square of magnitude of given point.(Can be used for fast magnitude calculation of point) * * @function Phaser.Geom.Point.GetMagnitudeSq * @since 3.0.0 * * @param {Phaser.Geom.Point} point - Returns square of the magnitude/length of given point. * * @return {number} Returns square of the magnitude of given point. */ var GetMagnitudeSq = function (point) { return (point.x * point.x) + (point.y * point.y); }; export default GetMagnitudeSq;