We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd1d21 commit 9eeef7eCopy full SHA for 9eeef7e
1 file changed
src/geom/rectangle/Union.js
@@ -30,7 +30,7 @@ var Union = function (rectA, rectB, out)
30
var w = Math.max(rectA.right, rectB.right) - x;
31
var h = Math.max(rectA.bottom, rectB.bottom) - y;
32
33
- return out.setTo(x, y,w, h);
+ return out.setTo(x, y, w, h);
34
};
35
36
module.exports = Union;
0 commit comments