Tagged Questions

2
votes
2answers
757 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 != ...