mirror of
https://github.com/photonstorm/phaser
synced 2025-01-20 09:04:00 +00:00
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
|
var Circumference = function (circle)
|
||
|
{
|
||
|
return 2 * (Math.PI * circle.radius);
|
||
|
};
|
||
|
|
||
|
module.exports = Circumference;
|