phaser/src/geom/circle/Circumference.js
2018-01-26 04:18:31 +00:00

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;