@petkoneo/phaser3-rex-plugins
Version:
29 lines (25 loc) • 618 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2019 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Calculates the area of the Ellipse.
*
* @function Phaser.Geom.Ellipse.Area
* @since 3.0.0
*
* @param {Phaser.Geom.Ellipse} ellipse - The Ellipse to get the area of.
*
* @return {number} The area of the Ellipse.
*/
var Area = function (ellipse)
{
if (ellipse.isEmpty())
{
return 0;
}
// units squared
return (ellipse.getMajorRadius() * ellipse.getMinorRadius() * Math.PI);
};
export default Area;