Objective-c : Objective-c 中 java Math.toRadians(EndLat - StartLat) 的等价物是什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您要经常使用它,您可能想将其放入函数中
You might want to put this in a function if you're going to be using it a lot
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