phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
33 lines (27 loc) • 876 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2026 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Vector2 = require('../../math/Vector2');
/**
* Returns the center of a Rectangle as a Point.
*
* @function Phaser.Geom.Rectangle.GetCenter
* @since 3.0.0
*
* @generic {Phaser.Math.Vector2} O - [out,$return]
*
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to get the center of.
* @param {Phaser.Math.Vector2} [out] - Optional Vector2 object to update with the center coordinates.
*
* @return {Phaser.Math.Vector2} The modified `out` object, or a new Vector2 if none was provided.
*/
var GetCenter = function (rect, out)
{
if (out === undefined) { out = new Vector2(); }
out.x = rect.centerX;
out.y = rect.centerY;
return out;
};
module.exports = GetCenter;