2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2023-01-02 17:36:27 +00:00
|
|
|
* @copyright 2013-2023 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
|
|
|
/**
|
2018-04-24 06:22:05 +00:00
|
|
|
* Rotate a given point by a given angle around the origin (0, 0), in an anti-clockwise direction.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Math.Rotate
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-24 06:22:05 +00:00
|
|
|
* @param {(Phaser.Geom.Point|object)} point - The point to be rotated.
|
|
|
|
* @param {number} angle - The angle to be rotated by in an anticlockwise direction.
|
2017-10-06 03:52:41 +00:00
|
|
|
*
|
2018-04-24 06:22:05 +00:00
|
|
|
* @return {Phaser.Geom.Point} The given point, rotated by the given angle in an anticlockwise direction.
|
2017-10-06 03:52:41 +00:00
|
|
|
*/
|
2017-01-03 22:47:26 +00:00
|
|
|
var Rotate = function (point, angle)
|
2016-12-07 17:16:59 +00:00
|
|
|
{
|
2017-01-03 22:47:26 +00:00
|
|
|
var x = point.x;
|
|
|
|
var y = point.y;
|
2016-12-07 17:16:59 +00:00
|
|
|
|
2017-01-03 22:47:26 +00:00
|
|
|
point.x = (x * Math.cos(angle)) - (y * Math.sin(angle));
|
|
|
|
point.y = (x * Math.sin(angle)) + (y * Math.cos(angle));
|
2016-12-07 17:16:59 +00:00
|
|
|
|
2017-01-03 22:47:26 +00:00
|
|
|
return point;
|
2016-12-07 17:16:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Rotate;
|