object collision p5 code example
Example: how to make a collision function in p5.js
// Method
collidesWith(x, y, w, h) {
return (
(this.x > x &&
this.x < x + w &&
this.y > y &&
this.y < y + h) ||
(this.x + this.width > x &&
this.x + this.width < x + w &&
this.y > y &&
this.y < y + h) ||
(this.x + this.width > x &&
this.x + this.width < x + w &&
this.y + this.height > y &&
this.y + this.height < y + h) ||
(this.x > x &&
this.x < x + w &&
this.y + this.height > y &&
this.y + this.height < y + h)
);
}