UNPKG

arcade-physics

Version:
21 lines 723 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 line to a destination line. * * @function Phaser.Geom.Line.CopyFrom * @since 3.0.0 * * @generic {Phaser.Geom.Line} O - [dest,$return] * * @param {Phaser.Geom.Line} source - The source line to copy the values from. * @param {Phaser.Geom.Line} dest - The destination line to copy the values to. * * @return {Phaser.Geom.Line} The destination line. */ declare function CopyFrom(source: Phaser.Geom.Line, dest: Phaser.Geom.Line): Phaser.Geom.Line; //# sourceMappingURL=CopyFrom.d.ts.map