I am trying to simulate a particle bouncing off the sides of a cylinder (inside) or any closed curved surface in 3 dimensions.
At the moment of interaction with the surface, I have the position vector, the velocity vector, and the plane tangent to the surface at the intersection, and I am looking to derive the new velocity vector.
Currently coding in Python, but pseudocode/general algorithm would be immensely helpful as well.
Get the
normal vector
of the plane. (you can make a cross product between two non parallel vectors in the plane for that).Take the velocity vector
components relative to the normal vector
and:Following an approach similar to @jacdeh:
velocity
withunit normal
(that is the scalar speed against the surface)unit normal
(that is the parallel component I mentioned).velocity
and this is the result.