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 (26 loc) • 754 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Offsets the Circle by the values given.
*
* @function Phaser.Geom.Circle.Offset
* @since 3.0.0
*
* @generic {Phaser.Geom.Circle} O - [circle,$return]
*
* @param {Phaser.Geom.Circle} circle - The Circle to be offset (translated.)
* @param {number} x - The amount to horizontally offset the Circle by.
* @param {number} y - The amount to vertically offset the Circle by.
*
* @return {Phaser.Geom.Circle} The Circle that was offset.
*/
var Offset = function (circle, x, y)
{
circle.x += x;
circle.y += y;
return circle;
};
module.exports = Offset;