Suppose if I have two rects with x,y,w,h and one is stationary and the other is moving at vx, vy. I already calculated that they overlap each other and I know the overlap rect as well. What I am interested in finding out is the red vector in the below graph:
This is different than a minimum adjustment vector because as you can see, the minimum adjustment would just move rect A leftwards, whereas the red vector moves it leftwards and upwards. Is there an efficient way to calculate this?
The movement vector
V0
and penetration vectorV1
are anti-parallelso you can exploit that:
where
dx,dy
is the overlap area size soHope I did not make some silly mistake but anyway the idea behind should be strait-forward. If not make the parametric line equation of
V0
... You can also exploit thedot
product for this but that should lead to the same results ...