I'm have an bCoord array which is contains the image x, y position, width and height. I want to insert other object to the array which is not cover each others. The source bellow working very well if the array objects size is bigger or equal with object that I want to insert there, otherwise not. I have a solution for that, but that is not very nice. If anybody has a nice solution regarding this problem, please share me.
this.isCover = function(pixel, width, height)
{
for (var i=0; i<bCoords.length; i++)
if (isThereBuilding(bCoords[i],pixel.x, pixel.y) || isThereBuilding(bCoords[i],pixel.x+width, pixel.y) ||
isThereBuilding(bCoords[i],pixel.x, pixel.y+height) ||isThereBuilding(bCoords[i],pixel.x+width, pixel.y+height) )
return bCoords[i];
return null;
}
function isThereBuilding(obj,x, y)
{
return (obj.x <= x && (obj.w+obj.x)>= x) && (obj.y <= y && (obj.h+obj.y) >= y);
}