Skip to content Skip to sidebar Skip to footer
Showing posts with the label Physics

How To Implement Arriving Behavior With Time Delta?

I'm trying to create an autonomous agent with arriving behaviour based on Reynolds classic Boid… Read more How To Implement Arriving Behavior With Time Delta?

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