UNPKG

arcade-physics

Version:
22 lines 667 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 }); /** * Returns the circumference of the given Circle. * * @function Phaser.Geom.Circle.Circumference * @since 3.0.0 * * @param {Phaser.Geom.Circle} circle - The Circle to get the circumference of. * * @return {number} The circumference of the Circle. */ const Circumference = circle => { return 2 * (Math.PI * circle.radius); }; exports.default = Circumference; //# sourceMappingURL=Circumference.js.map