phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
25 lines (21 loc) • 631 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
var Triangle = require('./Triangle');
/**
* Clones a Triangle object.
*
* @function Phaser.Geom.Triangle.Clone
* @since 3.0.0
*
* @param {Phaser.Geom.Triangle} source - The Triangle to clone.
*
* @return {Phaser.Geom.Triangle} A new Triangle identical to the given one but separate from it.
*/
var Clone = function (source)
{
return new Triangle(source.x1, source.y1, source.x2, source.y2, source.x3, source.y3);
};
module.exports = Clone;