phaser4-rex-plugins
Version:
23 lines (20 loc) • 581 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2019 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates the perimeter of a Rectangle.
*
* @function Phaser.Geom.Rectangle.Perimeter
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to use.
*
* @return {number} The perimeter of the Rectangle, equal to `(width * 2) + (height * 2)`.
*/
var Perimeter = function (rect)
{
return 2 * (rect.width + rect.height);
};
export default Perimeter;