phaser/src/geom/point/Clone.js
Chris Andrew 734c0115f9 Documented Geom CopyFrom functions and some Point functions.
Documented one remaining Ellipse ContainsRect parameter.
2018-06-21 18:42:40 +01:00

24 lines
548 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|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;