From 73ba5656bd27f4fb40ef59b8a94f69c4af6b8b8a Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Fri, 27 Dec 2019 00:08:46 -0500 Subject: added more utils --- utils/rectintersect.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 utils/rectintersect.js (limited to 'utils/rectintersect.js') diff --git a/utils/rectintersect.js b/utils/rectintersect.js new file mode 100644 index 0000000..bd2c479 --- /dev/null +++ b/utils/rectintersect.js @@ -0,0 +1,9 @@ +// Provides rectIntersect, to determine if two rectangles intersect (and hide the code) + +module.exports = function(one, two){ // Rectangles defined by min/max pairs of y/x coords + 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; + return true; +} -- cgit