UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

28 lines (24 loc) 694 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2019 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ var RotateMatrix = require('./RotateMatrix'); /** * Rotates the array matrix 180 degrees. * * @function Phaser.Utils.Array.Matrix.Rotate180 * @since 3.0.0 * * @generic T * @genericUse {T[][]} - [matrix,$return] * * @param {T[][]} [matrix] - The array to rotate. * * @return {T[][]} The rotated matrix array. The source matrix should be discard for the returned matrix. */ var Rotate180 = function (matrix) { return RotateMatrix(matrix, 180); }; module.exports = Rotate180;