UNPKG

arcade-physics

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