1
vote
1answer
69 views
Applying Coefficient of Restitution in a collision resolution method
I have a collision resolution method in my physics engine, that goes like this:
Vector2 n1pos = n1.NonLinearSpace != null ? n1.NonLinearPosition : n1.Position;
Vector2 n2pos = n2.NonLinearSpace != …
0
votes
1answer
48 views
How to implement restitution coefficient into a simple physics engine?
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 …
