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

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

Вопрос

what is the equivalent of java function

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

in objective-c?

Это было полезно?

Решение

#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

Другие советы

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top