phaser/v3/src/geom/triangle/Decompose.js

13 lines
284 B
JavaScript
Raw Normal View History

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;