;; | ---------------------------------------------------------------------------- ;; | MI_d2r ;; | ---------------------------------------------------------------------------- ;; | Function : Convert from Degrees to Radians ;; | Argument : 'd' - Value in degrees ;; | Action : Converts a degree value to its radian equivalent ;; | Updated : January 5, 1999 ;; | e-mail : rakesh.rao@4d-technologies.com ;; | Web : www.4d-technologies.com ;; | ---------------------------------------------------------------------------- (defun MI_d2r(d) (/ (* d pi) 180.0) )