我有两个带有对象的数组。例子:
var boxes = [],
coins = [],
k = 0;
boxes.push({
x: 300,
y: 350,
width: 500,
height: 500
});
for (k; k < 30; k++) {
coins.push({
x: Math.floor(Math.random() * (10 - 4) + 4) * 100,
y: Math.floor(Math.random() * (4 - 1) + 1) * 100,
width:25,
height:25
});
}
之后我for
用来画那些东西。问题是有时硬币会装在盒子里。如何检查硬币是否在盒子范围内?我正在考虑计算方盒和硬币,但我不知道如何完成。
var i = 0,
j = 0;
for (i; i < coins.length; i++) {
for (j; j < boxes.length; j++) {
if (boxes[j].x + boxes[j].width /* something */ coins[i].x + coins[i].width && boxes[j].y + boxes[j].height /* something */ coins[i].y + coins[i].height) {
/* do nothing */
} else {
ctx.fillRect(coins[i].x, coins[i].y, coins[i].width, coins[i].height);
}
}
}
有人知道如何完成吗?或者也许还有其他方法?我只能使用纯 JavaScript。
谢谢你的帮助。