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