From 2fbb29f79a7ca2d3b1d5f5198916489751572e7c Mon Sep 17 00:00:00 2001 From: Daniel <24710205+Fabadiculous@users.noreply.github.com> Date: Tue, 24 Apr 2018 16:22:05 +1000 Subject: [PATCH] Fill all description tags in Rotate.js --- src/math/Rotate.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/math/Rotate.js b/src/math/Rotate.js index 3f4a3bb0d..5d76060f5 100644 --- a/src/math/Rotate.js +++ b/src/math/Rotate.js @@ -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 * @since 3.0.0 * - * @param {(Phaser.Geom.Point|object)} point - [description] - * @param {number} angle - [description] + * @param {(Phaser.Geom.Point|object)} point - The point to be rotated. + * @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) {