Finding furthermost point in game world
- by user13414
I am attempting to find the furthermost point in my game world given the player's current location and a normalized direction vector in screen space. My current algorithm is:
convert player world location to screen space
multiply the direction vector by a large number (2000) and add it to the player's screen location to get the distant screen…