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

StackOverflow https://stackoverflow.com/questions/7791651

Question

what is the equivalent of java function

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

in objective-c?

Était-ce utile?

La solution

#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

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top