suppose I want to make a simple 2D "arcade" game with polygonal players that move around, shoot straight, are targeted by explosions and similar. This seems to require lots of geometric computations to figure out which polygon is intersected by a line, collisions between players and landscape obstacles, what polygons collide with the circle representing an explosion etc.
Is there a nice ready-made object oriented library that would handle all this stuff for me? .NET or ActionScript code would be ideal, but I am fine with C++ as well if no other choice.