mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Geom.Point.Cross
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Point} pointA - [description]
|
|
* @param {Phaser.Geom.Point} pointB - [description]
|
|
*
|
|
* @return {number} [description]
|
|
*/
|
|
var Cross = function (pointA, pointB)
|
|
{
|
|
return ((pointA.x * pointB.y) - (pointA.y * pointB.x));
|
|
};
|
|
|
|
module.exports = Cross;
|