phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
25 lines (21 loc) • 643 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Polygon = require('./Polygon');
/**
* Create a new polygon which is a copy of the specified polygon
*
* @function Phaser.Geom.Polygon.Clone
* @since 3.0.0
*
* @param {Phaser.Geom.Polygon} polygon - The polygon to create a clone of
*
* @return {Phaser.Geom.Polygon} A new separate Polygon cloned from the specified polygon, based on the same points.
*/
var Clone = function (polygon)
{
return new Polygon(polygon.points);
};
module.exports = Clone;