UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

41 lines (38 loc) 1.08 kB
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2026 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Reverses the row order of the given Array Matrix, which has the effect of reversing * the sequence of values within each column from top to bottom. * * A matrix is a two-dimensional array (array of arrays), where all sub-arrays (rows) * have the same length. There must be at least two rows. This is an example matrix: * * ``` * [ * [ 1, 1, 1, 1, 1, 1 ], * [ 2, 0, 0, 0, 0, 4 ], * [ 2, 0, 1, 2, 0, 4 ], * [ 2, 0, 3, 4, 0, 4 ], * [ 2, 0, 0, 0, 0, 4 ], * [ 3, 3, 3, 3, 3, 3 ] * ] * ``` * * @function Phaser.Utils.Array.Matrix.ReverseColumns * @since 3.0.0 * * @generic T * @genericUse {T[][]} - [matrix,$return] * * @param {T[][]} [matrix] - The array matrix whose row order will be reversed. * * @return {T[][]} The column reversed matrix. */ var ReverseColumns = function (matrix) { return matrix.reverse(); }; module.exports = ReverseColumns;