File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 *
77 * @param {number } value - [description]
88 * @param {number } [place=0] - [description]
9- * @param {integer] } [base=10] - [description]
9+ * @param {integer } [base=10] - [description]
1010 *
1111 * @return {number } [description]
1212 */
Original file line number Diff line number Diff line change 33
44var Class = require ( '../utils/Class' ) ;
55
6+ /**
7+ * [description]
8+ *
9+ * @class Vector2
10+ * @memberOf Phaser.Math
11+ * @constructor
12+ * @since 3.0.0
13+ *
14+ * @param {number } [x] - [description]
15+ * @param {number } [y] - [description]
16+ */
617var Vector2 = new Class ( {
718
819 initialize :
920
10- /**
11- * [description]
12- *
13- * @class Vector2
14- * @memberOf Phaser.Math
15- * @constructor
16- * @since 3.0.0
17- *
18- * @param {number } [x] - [description]
19- * @param {number } [y] - [description]
20- */
2121 function Vector2 ( x , y )
2222 {
2323 if ( typeof x === 'object' )
Original file line number Diff line number Diff line change 1+ /**
2+ * @namespace Phaser.Math.Angle
3+ */
4+
15module . exports = {
26
37 Between : require ( './Between' ) ,
Original file line number Diff line number Diff line change 1- // Phaser.Math.Distance
1+ /**
2+ * @namespace Phaser.Math.Distance
3+ */
24
35module . exports = {
46
Original file line number Diff line number Diff line change 1- // Phaser.Math.Easing
1+ /**
2+ * @namespace Phaser.Math.Easing
3+ */
24
35module . exports = {
46
Original file line number Diff line number Diff line change 1+ /**
2+ * @namespace Phaser.Math.Fuzzy
3+ */
4+
15module . exports = {
26
37 Ceil : require ( './Ceil' ) ,
Original file line number Diff line number Diff line change 1- // Phaser.Math.Interpolation
1+ /**
2+ * @namespace Phaser.Math.Interpolation
3+ */
24
35module . exports = {
46
Original file line number Diff line number Diff line change 1+ /**
2+ * @namespace Phaser.Math.Pow2
3+ */
4+
15module . exports = {
26
37 GetNext : require ( './GetPowerOfTwo' ) ,
Original file line number Diff line number Diff line change 11var Class = require ( '../../utils/Class' ) ;
22
3+ /**
4+ * [description]
5+ *
6+ * @class RandomDataGenerator
7+ * @memberOf Phaser.Math
8+ * @constructor
9+ * @since 3.0.0
10+ *
11+ * @param {array } [seeds] - [description]
12+ */
313var RandomDataGenerator = new Class ( {
414
515 initialize :
616
7- /**
8- * [description]
9- *
10- * @class RandomDataGenerator
11- * @memberOf Phaser.Math
12- * @constructor
13- * @since 3.0.0
14- *
15- * @param {array } [seeds] - [description]
16- */
1717 function RandomDataGenerator ( seeds )
1818 {
1919 /**
2020 * Internal var.
2121 *
2222 * @property {number } c
23+ * @alias Phaser.Math.RandomDataGenerator#c
2324 * @private
2425 * @default 1
2526 * @since 3.0.0
@@ -30,6 +31,7 @@ var RandomDataGenerator = new Class({
3031 * Internal var.
3132 *
3233 * @property {number } s0
34+ * @alias Phaser.Math.RandomDataGenerator#s0
3335 * @private
3436 * @default 0
3537 * @since 3.0.0
@@ -40,6 +42,7 @@ var RandomDataGenerator = new Class({
4042 * Internal var.
4143 *
4244 * @property {number } s1
45+ * @alias Phaser.Math.RandomDataGenerator#s1
4346 * @private
4447 * @default 0
4548 * @since 3.0.0
@@ -50,6 +53,7 @@ var RandomDataGenerator = new Class({
5053 * Internal var.
5154 *
5255 * @property {number } s2
56+ * @alias Phaser.Math.RandomDataGenerator#s2
5357 * @private
5458 * @default 0
5559 * @since 3.0.0
@@ -60,6 +64,7 @@ var RandomDataGenerator = new Class({
6064 * [description]
6165 *
6266 * @property {array } sign
67+ * @alias Phaser.Math.RandomDataGenerator#sign
6368 * @since 3.0.0
6469 */
6570 this . sign = [ - 1 , 1 ] ;
Original file line number Diff line number Diff line change 1+ /**
2+ * @namespace Phaser.Math.Snap
3+ */
4+
15module . exports = {
26
37 Ceil : require ( './SnapCeil' ) ,
You can’t perform that action at this time.
0 commit comments