Thanks Primo, I have functions to do those already in my archives, will dig them up. I never thought of the different degree types.
Found them here they are:
Thanks again, all tests green now.function Rad2Deg(rad as double) function = ( ( rad * 180 ) / 3.14159265 ) end function function Deg2Rad(deg as double) function = ( ( deg * 3.14159265 ) / 180 ) end function
Bookmarks