vote up 0 vote down star

I am writing a simple 2d physics engine that supports circle-circle collision and i can't figure out how to retrofit my collision resolution method to add restitution. How is a restitution coefficient property implemented in physics engines?

flag

1 Answer

vote up 1 vote down check

I don't know much about implementing game physics but I would use the following formulas found on the wikipedia page:

alt text

alt text

These formulas tell you the velocy of an object after a collision given your constant Cr. This will be easy to place in your application if:

  1. You are using vectors to represent everything and you understand (and can perform) vector math (first year University knowledge at the least). Since you are making a physics engine I think you probably do.
  2. You have given mass to all of the objects in your physics world.

If you have done that then you can use those formulas to decay velocity upon collisions. Your collision calculations are separate to that; this deals with the momentum of your objects.

link|flag
This looks great! thanks! – RCIX Oct 23 at 4:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.