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}
|
|
|
|
*/
|
|
|
|
|
2017-10-13 13:11:54 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Geom.Line.CopyFrom
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Geom.Line} source - [description]
|
|
|
|
* @param {Phaser.Geom.Line} dest - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Geom.Line} [description]
|
|
|
|
*/
|
2017-01-05 00:20:11 +00:00
|
|
|
var CopyFrom = function (source, dest)
|
|
|
|
{
|
|
|
|
return dest.setTo(source.x1, source.y1, source.x2, source.y2);
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = CopyFrom;
|