path fixes

This commit is contained in:
Aakansha Doshi
2024-05-09 13:38:37 +05:30
parent 7522285869
commit d5b406b055
3 changed files with 103 additions and 2 deletions
-1
View File
@@ -17,7 +17,6 @@ export function crossProduct(a: Point, b: Point) {
}
export function doBBoxesIntersect(a: Bounds, b: Bounds) {
console.log("HI");
return a[0] <= b[2] && a[2] >= b[0] && a[1] <= b[3] && a[3] >= b[1];
}