arcade-physics
Version:
Use Arcade Physics without Phaser.
13 lines • 461 B
TypeScript
export default Clone;
/**
* Create a new polygon which is a copy of the specified polygon
*
* @function Phaser.Geom.Polygon.Clone
* @since 3.0.0
*
* @param {Phaser.Geom.Polygon} polygon - The polygon to create a clone of
*
* @return {Phaser.Geom.Polygon} A new separate Polygon cloned from the specified polygon, based on the same points.
*/
declare function Clone(polygon: Phaser.Geom.Polygon): Phaser.Geom.Polygon;
//# sourceMappingURL=Clone.d.ts.map