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 (28 loc) • 725 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Offset a line by the given amount.
*
* @function Phaser.Geom.Line.Offset
* @since 3.0.0
*
* @generic {Phaser.Geom.Line} O - [line,$return]
*
* @param {Phaser.Geom.Line} line - The line to offset.
* @param {number} x - The horizontal offset to add to the line.
* @param {number} y - The vertical offset to add to the line.
*
* @return {Phaser.Geom.Line} The offset line.
*/
var Offset = function (line, x, y)
{
line.x1 += x;
line.y1 += y;
line.x2 += x;
line.y2 += y;
return line;
};
module.exports = Offset;