File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License }
55 */
66
7- // Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
7+ // Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
88// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
99
1010var Class = require ( '../utils/Class' ) ;
@@ -70,7 +70,7 @@ var Matrix4 = new Class({
7070 * @method Phaser.Math.Matrix4#set
7171 * @since 3.0.0
7272 *
73- * @param {[type] } src - [description]
73+ * @param {Phaser.Math.Matrix4 } src - [description]
7474 *
7575 * @return {Phaser.Math.Matrix4 } This Matrix4 object.
7676 */
@@ -713,7 +713,7 @@ var Matrix4 = new Class({
713713 {
714714 return null ;
715715 }
716-
716+
717717 len = 1 / len ;
718718 x *= len ;
719719 y *= len ;
Original file line number Diff line number Diff line change 44 * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License }
55 */
66
7- // Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
7+ // Adapted from [gl-matrix](https://github.com/toji/gl-matrix) by toji
88// and [vecmath](https://github.com/mattdesl/vecmath) by mattdesl
99
1010var Class = require ( '../utils/Class' ) ;
@@ -105,8 +105,8 @@ var Vector3 = new Class({
105105 * @method Phaser.Math.Vector3#crossVectors
106106 * @since 3.0.0
107107 *
108- * @param {[type] } a - [description]
109- * @param {[type] } b - [description]
108+ * @param {Phaser.Math.Vector3 } a - [description]
109+ * @param {Phaser.Math.Vector3 } b - [description]
110110 *
111111 * @return {Phaser.Math.Vector3 } This Vector3 object.
112112 */
@@ -659,7 +659,7 @@ var Vector3 = new Class({
659659 var viewY = viewport . y ;
660660 var viewWidth = viewport . z ;
661661 var viewHeight = viewport . w ;
662-
662+
663663 var x = this . x - viewX ;
664664 var y = ( viewHeight - this . y - 1 ) - viewY ;
665665 var z = this . z ;
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ var RandomDataGenerator = new Class({
121121 * @since 3.0.0
122122 * @private
123123 *
124- * @param {[type] } data - [description]
124+ * @param {string } data - [description]
125125 *
126126 * @return {number } The hashed value.
127127 */
You can’t perform that action at this time.
0 commit comments