UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

30 lines (25 loc) 908 B
/** * @author Richard Davey <rich@phaser.io> * @copyright 2013-2025 Phaser Studio Inc. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Decomposes a Triangle into an array of its points. * * @function Phaser.Geom.Triangle.Decompose * @since 3.0.0 * * @param {Phaser.Geom.Triangle} triangle - The Triangle to decompose. * @param {array} [out] - An array to store the points into. * * @return {array} The provided `out` array, or a new array if none was provided, with three objects with `x` and `y` properties representing each point of the Triangle appended to it. */ var Decompose = function (triangle, out) { if (out === undefined) { out = []; } out.push({ x: triangle.x1, y: triangle.y1 }); out.push({ x: triangle.x2, y: triangle.y2 }); out.push({ x: triangle.x3, y: triangle.y3 }); return out; }; module.exports = Decompose;