We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bdeb69 commit c119d57Copy full SHA for c119d57
1 file changed
src/math/DegToRad.js
@@ -7,14 +7,14 @@
7
var CONST = require('./const');
8
9
/**
10
- * [description]
+ * Convert the given angle from degrees, to the equivalent angle in radians.
11
*
12
* @function Phaser.Math.DegToRad
13
* @since 3.0.0
14
15
- * @param {integer} degrees - [description]
+ * @param {integer} degrees - The angle (in degrees) to convert to radians.
16
17
- * @return {float} [description]
+ * @return {float} The equivalent angle in radians.
18
*/
19
var DegToRad = function (degrees)
20
{
0 commit comments