UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

23 lines (20 loc) 654 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @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); }; module.exports = GetMagnitudeSq;