mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 20:43:26 +00:00
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
/**
|
|
* 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;
|