phaser/v3/typings/geom/circle/CopyFrom.d.ts
2017-01-16 22:43:07 +01:00

8 lines
303 B
TypeScript

import Circle from './Circle';
/**
* Copies the x, y and diameter properties from any given object to this Circle.
* @method Phaser.Circle#copyFrom
* @param {any} source - The object to copy from.
* @return {Circle} This Circle object.
*/
export default function (source: Circle, dest: Circle): Circle;