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 (25 loc) • 772 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Point = require('./Point');
/**
* Inverts a Point's coordinates.
*
* @function Phaser.Geom.Point.Negative
* @since 3.0.0
*
* @generic {Phaser.Geom.Point} O - [out,$return]
*
* @param {Phaser.Geom.Point} point - The Point to invert.
* @param {Phaser.Geom.Point} [out] - The Point to return the inverted coordinates in.
*
* @return {Phaser.Geom.Point} The modified `out` Point, or a new Point if none was provided.
*/
var Negative = function (point, out)
{
if (out === undefined) { out = new Point(); }
return out.setTo(-point.x, -point.y);
};
module.exports = Negative;