What's the formula for a var that returns the degrees in a full rotation from Point A(src) to Point B(src.target) using trigonometry in the DM language?
Heh.
ID:168962
![]() Aug 9 2005, 8:58 pm
|
|
Otherwise, use a bit of right angle trig:
sin d = abs(a.y-b.y) / (distance between a and b)
Where d is the angle. You get that from right angle trigonometry.