This commit is contained in:
Richard Davey 2018-04-11 13:17:16 +01:00
parent ffd1d218e6
commit 9eeef7e33e

View file

@ -30,7 +30,7 @@ var Union = function (rectA, rectB, out)
var w = Math.max(rectA.right, rectB.right) - x;
var h = Math.max(rectA.bottom, rectB.bottom) - y;
return out.setTo(x, y,w, h);
return out.setTo(x, y, w, h);
};
module.exports = Union;