Between two locations, i’m trying to figure out how to calculate a point along the line between the two.
Example would be I want to calculate the position 1000 units distance from location 1 to location 2.
So the params i’d be working with are: Location1, Location2, DistanceAlongLine.
Could anyone offer some ideas of how to do this?
Chosker
(Chosker)
2
theory behind it:
you want to find a position starting off from Location1, offset by DistanceAlongLine into the direction of Location2
actual code:
YourLocation = Location1 + (Normal(Location2 - Location1) * DistanceAlongLine)
Ah thanks Chosker. Yes that makes total sense now i see it. Thanks for posting 
Chosker
(Chosker)
4
you’re welcome, glad to help 