Skip to content

Commit 1aeb832

Browse files
committed
Started documenting Math.Easing functions.
1 parent 313ae38 commit 1aeb832

32 files changed

Lines changed: 66 additions & 66 deletions

File tree

src/math/easing/back/In.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* @function Phaser.Math.Easing.Back.In
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
* @param {number} [overshoot=1.70158] - [description]
1515
*
16-
* @return {number} [description]
16+
* @return {number} The tweened value.
1717
*/
1818
var In = function (v, overshoot)
1919
{

src/math/easing/back/InOut.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* @function Phaser.Math.Easing.Back.InOut
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
* @param {number} [overshoot=1.70158] - [description]
1515
*
16-
* @return {number} [description]
16+
* @return {number} The tweened value.
1717
*/
1818
var InOut = function (v, overshoot)
1919
{

src/math/easing/back/Out.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* @function Phaser.Math.Easing.Back.Out
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
* @param {number} [overshoot=1.70158] - [description]
1515
*
16-
* @return {number} [description]
16+
* @return {number} The tweened value.
1717
*/
1818
var Out = function (v, overshoot)
1919
{

src/math/easing/bounce/In.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Bounce.In
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var In = function (v)
1818
{

src/math/easing/bounce/InOut.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Bounce.InOut
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var InOut = function (v)
1818
{

src/math/easing/bounce/Out.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Bounce.Out
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var Out = function (v)
1818
{

src/math/easing/circular/In.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Circular.In
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var In = function (v)
1818
{

src/math/easing/circular/InOut.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Circular.InOut
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var InOut = function (v)
1818
{

src/math/easing/circular/Out.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Circular.Out
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var Out = function (v)
1818
{

src/math/easing/cubic/In.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* @function Phaser.Math.Easing.Cubic.In
1111
* @since 3.0.0
1212
*
13-
* @param {number} v - [description]
13+
* @param {number} v - The value to be tweened.
1414
*
15-
* @return {number} [description]
15+
* @return {number} The tweened value.
1616
*/
1717
var In = function (v)
1818
{

0 commit comments

Comments
 (0)