How can I find the position on the vector between Point A and Point B, X units away from Point A where the distance between the points is at least X? Thanks
Pseudocode:
C = A + normalize(B - A) * X
Note that this will work for any (reasonable) value of X; the only requirement is that A and B are not coincident or nearly coincident.