UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

24 lines (21 loc) 630 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * [description] * * @function Phaser.Math.Angle.BetweenPointsY * @since 3.0.0 * * @param {(Phaser.Geom.Point|object)} point1 - [description] * @param {(Phaser.Geom.Point|object)} point2 - [description] * * @return {number} [description] */ var BetweenPointsY = function (point1, point2) { return Math.atan2(point2.x - point1.x, point2.y - point1.y); }; module.exports = BetweenPointsY;