mirror of
https://github.com/photonstorm/phaser
synced 2025-01-25 19:35:15 +00:00
22 lines
556 B
JavaScript
22 lines
556 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
var Circumference = function (circle)
|
|
{
|
|
return 2 * (Math.PI * circle.radius);
|
|
};
|
|
|
|
module.exports = Circumference;
|