Hey All
Can someone help me if this functions corrected is?
FUNCTION Deg2Rad(xg AS SINGLE) AS SINGLE
FUNCTION = xg * %PI / 180
END FUNCTION
FUNCTION Rad2Deg(xr AS SINGLE) AS SINGLE
FUNCTION = xr * %PI / 57
END FUNCTION
Can anybody help me how I can write an function for convert radians to
degrees?
Kind regards
------------------
Brainsoft Programmers
Can someone help me if this functions corrected is?
FUNCTION Deg2Rad(xg AS SINGLE) AS SINGLE
FUNCTION = xg * %PI / 180
END FUNCTION
FUNCTION Rad2Deg(xr AS SINGLE) AS SINGLE
FUNCTION = xr * %PI / 57
END FUNCTION
Can anybody help me how I can write an function for convert radians to
degrees?
Kind regards
------------------
Brainsoft Programmers
Comment