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