Calculate Velocity And Direction Of A Ball To Ball Collision Based On Mass And Bouncing Coefficient
I used the following code based on this ballA.vx = (u1x * (m1 - m2) + 2 * m2 * u2x) / (m1 + m2); ba…
Read more
Calculate Velocity And Direction Of A Ball To Ball Collision Based On Mass And Bouncing Coefficient