tags:

views:

294

answers:

2

Working on a 2D project and wanted some recommendations on a simple 2d physics library for use in C# with the XNA framework. I was looking at Farseer or physics2d. Anyone have any other suggestions?

Thanks!

+4  A: 

There's a good list posted on the XNA Forums.

If you're only dealing with 2D, Farseer is very nice to work with, and would probably be my recommendation.

Reed Copsey
+1. Great recommendation!
Moayad Mardini
+2  A: 

I have been using Farseer for 2D. It comes with good demos and does what it needs to well enough. It is extensible easily enough thanks to the source being both provided and clearly written.

If you outgrow it you will at least know far better what your requirements are. It only took me an afternoon to learn it and start extending it.

Godeke
Thanks for the input. I agree, better to start with something that may be too simple before going with something that may be overkill or overly complex.
Casey