I know how to check if a circle is about to collide with a square, and I know how to detect if a square is about to collide with a square, but how would I go about detecting if a polygon is about to collide with a square?
Or better yet, when a polygon is about to collide with a polygon.
OR better yet, when a shape made up of lines that are not straight collides with another similar shape, a polygon, or a circle/rectangle
Is there any way to get the pixels a shape would take up maybe and the pixels another shape would take up and check if any of them are the same?
I am hoping there is some solution that doesn't require a ton of shape specific calculation.
I am using javascript and html5 canvas to do this.