Objective-c : Objective-c 中 java Math.toRadians(EndLat - StartLat) 的等价物是什么?

发布于 2024-12-10 07:36:08 字数 137 浏览 0 评论 0原文

java 函数相当于什么?

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

Objective-C 中的

what is the equivalent of java function

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

in objective-c?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

属性 2024-12-17 07:36:08
#include <math.h>

(EndLat - StartLat) * M_PI / 180.0;

如果您要经常使用它,您可能想将其放入函数中

#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

泪之魂 2024-12-17 07:36:08

Math.toRadians(a) 似乎是从角度 a 计算弧度。

根据任何足够的基础数学文本,等效的代码将是

result = a * 3.14159265358979323846 / 180.0

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文