mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +00:00
7 lines
251 B
TypeScript
7 lines
251 B
TypeScript
/**
|
|
* 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 (point: any): any;
|