I run into this occasionally and always forget how to do it.
One of those things that pop up ever so often.
Also, what\'s the formula to convert angles expre
In javascript you can do it this way
radians = degrees * (Math.PI/180); degrees = radians * (180/Math.PI);