phaser/src/geom/ellipse/Offset.js
2020-01-15 12:07:09 +00:00

29 lines
769 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Offsets the Ellipse by the values given.
*
* @function Phaser.Geom.Ellipse.Offset
* @since 3.0.0
*
* @generic {Phaser.Geom.Ellipse} O - [ellipse,$return]
*
* @param {Phaser.Geom.Ellipse} ellipse - The Ellipse to be offset (translated.)
* @param {number} x - The amount to horizontally offset the Ellipse by.
* @param {number} y - The amount to vertically offset the Ellipse by.
*
* @return {Phaser.Geom.Ellipse} The Ellipse that was offset.
*/
var Offset = function (ellipse, x, y)
{
ellipse.x += x;
ellipse.y += y;
return ellipse;
};
module.exports = Offset;