Skip to content

Commit e06f249

Browse files
committed
Commented out 2 functions that don't currently work.
1 parent bac618e commit e06f249

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/math/Math.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,6 @@ Phaser.Math = {
408408
* @param {number} a2
409409
* @param {boolean} radians - True if angle sizes are expressed in radians.
410410
* @return {number}
411-
*/
412411
nearestAngleBetween: function (a1, a2, radians) {
413412
414413
if (typeof radians === "undefined") { radians = true; }
@@ -430,6 +429,7 @@ Phaser.Math = {
430429
return a2 - a1;
431430
432431
},
432+
*/
433433

434434
/**
435435
* Interpolate across the shortest arc between two angles.
@@ -440,7 +440,6 @@ Phaser.Math = {
440440
* @param {boolean} radians - True if angle sizes are expressed in radians.
441441
* @param {Description} ease - Description.
442442
* @return {number}
443-
*/
444443
interpolateAngles: function (a1, a2, weight, radians, ease) {
445444
446445
if (typeof radians === "undefined") { radians = true; }
@@ -452,6 +451,7 @@ Phaser.Math = {
452451
return (typeof ease === 'function') ? ease(weight, a1, a2 - a1, 1) : this.interpolateFloat(a1, a2, weight);
453452
454453
},
454+
*/
455455

456456
/**
457457
* Generate a random bool result based on the chance value.

0 commit comments

Comments
 (0)