I'm not very mathematical but I'm working on a 3d program and for this part I simply want to draw a line.
I know the starting vector (x,y,z), the length r of the line and the bearing/angle. I want to calculate the endpoint so I can draw the line.
I had a look around and I'm using the following. Let θ be the angle in radians, and let d be the distance. Then the other endpoint is (x′,y′,z′), where:
X=3500 Y=0 Z=2000
r=150000 angle= 64.322
What is my End Point (x',y',z')