phaser/src/geom/circle/CopyFrom.js

25 lines
759 B
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2016-12-29 00:17:20 +00:00
/**
* Copies the `x`, `y` and `radius` properties from the `source` Circle
* into the given `dest` Circle, then returns the `dest` Circle.
*
* @function Phaser.Geom.Circle.CopyFrom
* @since 3.0.0
*
* @param {Phaser.Geom.Circle} source - The source Circle to copy the values from.
2018-01-26 04:18:22 +00:00
* @param {Phaser.Geom.Circle} dest - The destination Circle to copy the values to.
2017-10-13 13:11:54 +00:00
*
* @return {Phaser.Geom.Circle} The dest Circle.
*/
2016-12-29 00:17:20 +00:00
var CopyFrom = function (source, dest)
{
return dest.setTo(source.x, source.y, source.radius);
};
module.exports = CopyFrom;