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