phaser/src/geom/point/Clone.js
2020-01-15 12:07:09 +00:00

24 lines
522 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @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;