phaser/src/geom/triangle/ContainsPoint.js
2022-02-28 14:29:51 +00:00

25 lines
757 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2022 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Contains = require('./Contains');
/**
* Tests if a triangle contains a point.
*
* @function Phaser.Geom.Triangle.ContainsPoint
* @since 3.0.0
*
* @param {Phaser.Geom.Triangle} triangle - The triangle.
* @param {(Phaser.Geom.Point|Phaser.Math.Vector2|any)} point - The point to test, or any point-like object with public `x` and `y` properties.
*
* @return {boolean} `true` if the point is within the triangle, otherwise `false`.
*/
var ContainsPoint = function (triangle, point)
{
return Contains(triangle, point.x, point.y);
};
module.exports = ContainsPoint;