mirror of
https://github.com/photonstorm/phaser
synced 2025-01-13 05:38:48 +00:00
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
|
var Area = function (circle)
|
||
|
{
|
||
|
return (circle.radius > 0) ? Math.PI * circle.radius * circle.radius : 0;
|
||
|
};
|
||
|
|
||
|
module.exports = Area;
|