phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
35 lines (30 loc) • 864 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Tranlates the points of the given Polygon.
*
* @function Phaser.Geom.Polygon.Translate
* @since 3.50.0
*
* @generic {Phaser.Geom.Polygon} O - [polygon,$return]
*
* @param {Phaser.Geom.Polygon} polygon - The Polygon to modify.
* @param {number} x - The amount to horizontally translate the points by.
* @param {number} y - The amount to vertically translate the points by.
*
* @return {Phaser.Geom.Polygon} The modified Polygon.
*/
var Translate = function (polygon, x, y)
{
var points = polygon.points;
for (var i = 0; i < points.length; i++)
{
points[i].x += x;
points[i].y += y;
}
return polygon;
};
module.exports = Translate;