Collision response

Started by
1 comment, last by petrusss 20 years, 6 months ago
I have one vector for the surface where the object has collided, and one vector that is the movement vector (current pos - last pos). I want to be able to "slide" by that surface, how do I do it?
Wehhhhhhhhhhooooooooo!!!!!!!
Advertisement
if your object is a point:
move the current position in the direction of the normal, until it''s on the plane. so:

distance = DotProduct(curPos - plane.pivot,plane.normal);
curPos -= plane.normal * distance;

if it''s a sphere, just subtract the radius of the sphere from distance:
distance = DotProduct(curPos - plane.pivot,plane.normal);
curPos -= plane.normal * (distance - radius);



My Site
Thanks alot! =D
Wehhhhhhhhhhooooooooo!!!!!!!

This topic is closed to new replies.

Advertisement