UNPKG

arcade-physics

Version:
22 lines 633 B
"use strict"; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ Object.defineProperty(exports, "__esModule", { value: true }); /** * Calculates the area of the given Rectangle object. * * @function Phaser.Geom.Rectangle.Area * @since 3.0.0 * * @param {Phaser.Geom.Rectangle} rect - The rectangle to calculate the area of. * * @return {number} The area of the Rectangle object. */ const Area = rect => { return rect.width * rect.height; }; exports.default = Area; //# sourceMappingURL=Area.js.map