mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
734c0115f9
Documented one remaining Ellipse ContainsRect parameter.
24 lines
548 B
JavaScript
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;
|