给定正方形的位置和尺寸,JavaScript 中测试直线是否穿过矩形的方程式是什么?
到目前为止,我尝试过的是:
function isSquareIntersectingLine(square, line) {
return (
line.startX >= square.topLeftX &&
line.startX <= square.topLeftX + square.width &&
line.endX >= square.topLeftX + square.width
);
}
这适用于尺寸为:
Square: {topLeftX: 0, topLeftY: 0, width: 5, height: 5}
Line: {startX: 2, startY: -4, endX: 6, endY: 3}
但如果尺寸是这样的,它就行不通了:
Square: {topLeftX: 0, topLeftY: 0, width: 5, height: 5}
Line: {startX: 2, startY: -4, endX: 3, endY: 10}
在 JavaScript 中检查线段是否与正方形相交的正确公式是什么?