Closest Approach question for math/physics heads

Closest approach can be done without simulating time if the position function is invertible and explicit.

  1. Pick a path and object.
  2. Find the point on the path where the two paths are closest. If time has bounds (e.g. paths are line segments), ignore the bounds in this step.
  3. Find the time at which the object is at the point from the previous step.
  4. If time has bounds, limit the picked time by the bounds.
  5. Calculate the position of the other object at the time from the previous step.
  6. Check if the objects overlap.

This won't work for all paths (e.g. some cubic), but should work for linear paths.


(I don't know how to post graphics; bear with me.)

All right, we have two spheres with radii r1 and r2, starting at locations X1 and X2, moving with velocities V1 and V2 (X's and V's are vectors).

The velocity of sphere 1 as seen from sphere 2 is

V = V1-V2

and its direction is

v = V/|V|

The distance sphere 1 must travel (in the frame of sphere 2) to closest approach is

s = Xv

And if X is the initial separation, then the distance of closest approach is

h = |X - Xv|

This is where graphics would help. If h > r1+r2, there will be no collision. Suppose h < r1+r2. At the time of collision, the two sphere centers and the point of closest approach will form a right triangle. The distance from Sphere 1's center to the point of closest approach is

u = sqrt((r1 + r2)^2 - h^2)

So the distance sphere 1 has traveled is

s - u

Now just see if sphere 1 travels that far in the given interval. If so, then you know exactly when and where the spheres were (you must shift back from sphere 2's frame, but that's pretty easy). If not, there's no collision.

Tags:

Math

Physics