diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/rectintersect.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rectintersect.js b/utils/rectintersect.js index bd2c479..9aaa38a 100644 --- a/utils/rectintersect.js +++ b/utils/rectintersect.js @@ -4,6 +4,6 @@ module.exports = function(one, two){ // Rectangles defined by min/max pairs of y if ( one[0][0] > two[1][0] || two[0][0] > one[1][0] || one[0][1] > two[1][1] || - two[0][1] > two[1][1] ) return false; + two[0][1] > one[1][1] ) return false; return true; } |