in my breakout style game (Java & AndEngine), I have to find which side of brick that collision with ball. In other words, I want to bounce the ball according to its collision surface. If my ball collisions with brick's top or bottom; I will bounce it with rotation = 180-rotation; , else, with rotation = 360-rotation;
