arcade-physics
Version:
Use Arcade Physics without Phaser.
25 lines • 757 B
JavaScript
;
/**
* @author samme
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Calculate the distance between two points.
*
* @function Phaser.Math.Distance.BetweenPoints
* @since 3.22.0
*
* @param {Phaser.Types.Math.Vector2Like} a - The first point.
* @param {Phaser.Types.Math.Vector2Like} b - The second point.
*
* @return {number} The distance between the points.
*/
const DistanceBetweenPoints = (a, b) => {
const dx = a.x - b.x;
const dy = a.y - b.y;
return Math.sqrt(dx * dx + dy * dy);
};
exports.default = DistanceBetweenPoints;
//# sourceMappingURL=DistanceBetweenPoints.js.map