Code subject: convert from degrees to radians and vice versa
Posted: Sun Apr 03, 2011 9:52 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2272 Location: Earth Has thanked: 39 time Have thanks: 61 time
Following example define two function to convert between degrees and radians .
Code:
<% 'function to convert from degrees to radians function degreeRadian(degValue) degreeRadian= degValue* 3.14 / 180 end function 'function convert from radians to degrees function radianDegree(radValue) radianDegree= radValue* 180 / 3.14 end function %>
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )