Hi
So I have two vectors, one is the y vector (0,1,0) and the other is an arbitrary vector called @aim, given those two I want to find the angle between those two vectors.
Now this should be pretty straight forward, just use
acos(dot(@aim,@up))
wich gives the angle in radiants, and...