Converts a string representing an angle into a real (floating-point) value in radians
(angtof string [units])
A real value, if successful; otherwise nil.
The angtof and angtos functions are complementary: if you pass angtof a string created by angtos, angtof is guaranteed to return a valid value, and vice versa (assuming the unit values match).
Command: (angtof "45.0000")
0.785398
Command: (angtof "45.0000" 3)
1.0177
See Also
-
The angtos function.