phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
31 lines (28 loc) • 897 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Returns true if two triangles have the same coordinates.
*
* @function Phaser.Geom.Triangle.Equals
* @since 3.0.0
*
* @param {Phaser.Geom.Triangle} triangle - The first triangle to check.
* @param {Phaser.Geom.Triangle} toCompare - The second triangle to check.
*
* @return {boolean} `true` if the two given triangles have the exact same coordinates, otherwise `false`.
*/
var Equals = function (triangle, toCompare)
{
return (
triangle.x1 === toCompare.x1 &&
triangle.y1 === toCompare.y1 &&
triangle.x2 === toCompare.x2 &&
triangle.y2 === toCompare.y2 &&
triangle.x3 === toCompare.x3 &&
triangle.y3 === toCompare.y3
);
};
module.exports = Equals;