phaser/src/geom/line/CenterOn.js

35 lines
793 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2019-01-15 16:20:22 +00:00
* @copyright 2019 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
2017-10-13 13:11:54 +00:00
/**
* Center a line on the given coordinates.
2017-10-13 13:11:54 +00:00
*
* @function Phaser.Geom.Line.CenterOn
* @since 3.0.0
*
* @param {Phaser.Geom.Line} line - The line to center.
* @param {number} x - The horizontal coordinate to center the line on.
* @param {number} y - The vertical coordinate to center the line on.
2017-10-13 13:11:54 +00:00
*
* @return {Phaser.Geom.Line} The centered line.
2017-10-13 13:11:54 +00:00
*/
var CenterOn = function (line, x, y)
{
var tx = x - ((line.x1 + line.x2) / 2);
var ty = y - ((line.y1 + line.y2) / 2);
line.x1 += tx;
line.y1 += ty;
line.x2 += tx;
line.y2 += ty;
return line;
};
module.exports = CenterOn;