Calculating Velocity Vector After Polygon Collision - Madison

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
mbrown3391
Messages
6
Reaction score
0
I am currently programming a 2-dimensional game and am creating a class that will allow for collision detection with any polygon defined by a set of points. The actual collision detection was easy, however i am having trouble coming up with an equation to describe the resulting velocity vector of an object after the collision.

http://www.cheeseparade.com/diagram.png

Based on the diagram above, can anyone give me an equation that will return the blue vector as a function of the green vector, regardless of the angle of the green vector? All the red points are known information at any given time.

Thanks,
Madison
 
Last edited by a moderator:
Physics news on Phys.org
I'm not quite sure what I'm looking at here... what should the relationship be between the blue vector and green vector? Or in other words, what kind of physical situation are you trying to simulate? What happens to the object that collides with the polygon?
 
when the object collides, the component of its velocity that is perpendicular to the edge that it collides with should be eliminated so that the object continues on a path parallel to the edge. i don't need to worry about bouncing at this point.
 
OK, I see... you're talking about a totally inelastic collision. I'm assuming you have (or can calculate) the velocity vector [itex]\vec{v}[/itex] as well as the vector pointing along the edge of the polygon in the direction of the blue arrow, which I'll call [itex]\vec{p}[/itex], and also that you either have or can write a function to take dot products. Then you can just project [itex]\vec{v}[/itex] on to [itex]\vec{p}[/itex] to get your final velocity:
[tex]\vec{v}\,' = \frac{\vec{v}\cdot\vec{p}}{\vec{p}\cdot\vec{p}}\ \vec{p}[/tex]

Incidentally, a general formula for inelastic collisions can be found on Wikipedia, http://en.wikipedia.org/wiki/Coefficient_of_restitution.
 
Thank you! that equation worked perfectly.