Difference between revisions of "Deg to Rad"

From scripting
Jump to: navigation, search
(Created page with " Function deg_to_rad(InputDegrees As Double) As Double deg_to_rad = InputDegrees * 3.14159265 / 180 End Function Category:CATIA DP VB")
 
(No difference)

Latest revision as of 05:22, 22 April 2017

Function deg_to_rad(InputDegrees As Double) As Double
deg_to_rad = InputDegrees * 3.14159265 / 180
End Function