Oval collision detection not working properly
- by William
So I'm trying to implement a test where a oval can connect with a circle, but it's not working.
edist = (float) Math.sqrt(Math.pow((px + ((pwidth/2) )) - (bx + (bsize/2)), 2) + Math.pow(-((py + ((pwidth/2)) ) - (bx + (bsize/2))), 2));
and here is the full code (requires Slick2D):
import org.newdawn.slick.AppGameContainer;
import…