UNPKG

arcade-physics

Version:
21 lines 788 B
export default CopyFrom; /** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Copy the values of one Rectangle to a destination Rectangle. * * @function Phaser.Geom.Rectangle.CopyFrom * @since 3.0.0 * * @generic {Phaser.Geom.Rectangle} O - [dest,$return] * * @param {Phaser.Geom.Rectangle} source - The source Rectangle to copy the values from. * @param {Phaser.Geom.Rectangle} dest - The destination Rectangle to copy the values to. * * @return {Phaser.Geom.Rectangle} The destination Rectangle. */ declare function CopyFrom(source: Phaser.Geom.Rectangle, dest: Phaser.Geom.Rectangle): Phaser.Geom.Rectangle; //# sourceMappingURL=CopyFrom.d.ts.map