📜  c++ 2d 矩形碰撞 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:38.352000             🧑  作者: Mango

代码示例1
var rect1 = {x: 5, y: 5, width: 50, height: 50}
var rect2 = {x: 20, y: 10, width: 10, height: 10}

if (rect1.x < rect2.x + rect2.width &&
   rect1.x + rect1.width > rect2.x &&
   rect1.y < rect2.y + rect2.height &&
   rect1.height + rect1.y > rect2.y) {
    // collision détectée !
}