如何在 iPhone 中实现 AR(增强现实)视图的罗盘,就像 Buuuk 应用程序一样

发布于 2024-11-01 21:33:05 字数 229 浏览 5 评论 0原文

我们在像 Buuuk 应用程序那样在 AR 中实现指南针视图(AR 屏幕底部的圆形视图,方向正确)时遇到了困难。我们正在使用 http://code.google.com/p/iphonearkit/< 中给出的 iphonearkit 框架< /a>.

有谁知道如何实施它?

We have been facing difficulty in implementing the compass view (circular view at the bottom of the AR screen with places in right direction) in AR like in Buuuk app. We are using the iphonearkit fraemwork as given in http://code.google.com/p/iphonearkit/.

Does anyone have a clue about how to implement it?

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

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

发布评论

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

评论(1

浮生未歇 2024-11-08 21:33:05

这只是一些简单的三角计算。

  1. 子类drawRect
  2. 设置一个半径
  3. 绘制一个半透明的圆环
  4. ,通过POI
  5. ,并得到最大距离。考虑到最大距离将在圆的周长处结束,计算每个 POI 到中心的距离
  6. ,使用到每个 POI 中心的距离和方位角,并通过三角计算来找到 x,y 坐标

It's just some simple trigo calculation.

  1. subclass drawRect
  2. set a radius
  3. draw a translucent circle
  4. loop through the POIs, and get the maximum distance.
  5. given that the maximum distance will end up at the perimeter of the circle, calculate the distance from the center for each POIs
  6. use the distance from center and bearing of each POIs, and bit of trigo calculation to find the x,y coordinate
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文