UNPKG

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) 522 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ var Point = require('./Point'); /** * Clone the given Point. * * @function Phaser.Geom.Point.Clone * @since 3.0.0 * * @param {Phaser.Geom.Point} source - The source Point to clone. * * @return {Phaser.Geom.Point} The cloned Point. */ var Clone = function (source) { return new Point(source.x, source.y); }; module.exports = Clone;