mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 21:28:53 +00:00
24 lines
685 B
JavaScript
24 lines
685 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 Rectangle = require('./Rectangle');
|
|
|
|
/**
|
|
* Creates a new Rectangle which is identical to the given one.
|
|
*
|
|
* @function Phaser.Geom.Rectangle.Clone
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Rectangle} source - The Rectangle to clone.
|
|
*
|
|
* @return {Phaser.Geom.Rectangle} The newly created Rectangle, which is separate from the given one.
|
|
*/
|
|
var Clone = function (source)
|
|
{
|
|
return new Rectangle(source.x, source.y, source.width, source.height);
|
|
};
|
|
|
|
module.exports = Clone;
|