objective-c : what is the equivalent of java Math.toRadians(EndLat - StartLat) in objective-c?

1.4k Views Asked by At

what is the equivalent of java function

Double EndLat;
Double StartLat;
Math.toRadians(EndLat - StartLat); 

in objective-c?

2

There are 2 best solutions below

0
On BEST ANSWER
#include <math.h>

(EndLat - StartLat) * M_PI / 180.0;

You might want to put this in a function if you're going to be using it a lot

0
On

Well Math.toRadians(a) seems to compute the radians from the angle a.

According to any sufficient basic math text, the equivalent code would be

result = a * 3.14159265358979323846 / 180.0