UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

30 lines (27 loc) 886 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Compares the `x`, `y`, `width` and `height` properties of the two given Ellipses. * Returns `true` if they all match, otherwise returns `false`. * * @function Phaser.Geom.Ellipse.Equals * @since 3.0.0 * * @param {Phaser.Geom.Ellipse} ellipse - The first Ellipse to compare. * @param {Phaser.Geom.Ellipse} toCompare - The second Ellipse to compare. * * @return {boolean} `true` if the two Ellipse equal each other, otherwise `false`. */ var Equals = function (ellipse, toCompare) { return ( ellipse.x === toCompare.x && ellipse.y === toCompare.y && ellipse.width === toCompare.width && ellipse.height === toCompare.height ); }; module.exports = Equals;