Fill all description tags in Rotate.js

This commit is contained in:
Daniel 2018-04-24 16:22:05 +10:00
parent 31ed7f7673
commit 2fbb29f79a

View file

@ -5,15 +5,15 @@
*/ */
/** /**
* [description] * Rotate a given point by a given angle around the origin (0, 0), in an anti-clockwise direction.
* *
* @function Phaser.Math.Rotate * @function Phaser.Math.Rotate
* @since 3.0.0 * @since 3.0.0
* *
* @param {(Phaser.Geom.Point|object)} point - [description] * @param {(Phaser.Geom.Point|object)} point - The point to be rotated.
* @param {number} angle - [description] * @param {number} angle - The angle to be rotated by in an anticlockwise direction.
* *
* @return {Phaser.Geom.Point} [description] * @return {Phaser.Geom.Point} The given point, rotated by the given angle in an anticlockwise direction.
*/ */
var Rotate = function (point, angle) var Rotate = function (point, angle)
{ {