mirror of
https://github.com/photonstorm/phaser
synced 2024-12-22 11:03:23 +00:00
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
var Area = function (circle)
|
|
{
|
|
return (circle.radius > 0) ? Math.PI * circle.radius * circle.radius : 0;
|
|
};
|
|
|
|
module.exports = Area;
|