如何使用大气着色器为 iOS 制作逼真的 3D 地球

发布于 2024-11-04 00:05:38 字数 88 浏览 0 评论 0原文

如何从 3D Max/或其他 3D 应用程序真实地球模型移植到 iOS 设备 (Open GL ES) 如何移植大气效果(不是云 - 它是纹理) - 天空的辉光?

How porting from 3D Max / or other 3D application realistic earth model to iOS device ( Open GL ES)
How porting atmosphere effects ( not clouds - it is texture) - the glow of sky?

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

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

发布评论

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

评论(2

仅一夜美梦 2024-11-11 00:05:38

如果速度不是重点,您可以使用光线追踪。您可以将地球及其大气层建模为一个不透明的球体,以及一些不透明的大球体作为大气层。它为您提供了一个处理云、阴影、散射、滤光的模型,只需合理的工作量,无需太多调整。对具有相同中心的十几个球体进行光线追踪非常便宜。每个“大气”层都会使光线发生偏离,每层的折射率都会降低,并且它们会吸收一些光,对于较低的层来说会吸收更多的光。花一些时间在纸上,你可以稍微简化数学并变得非常便宜:)

另外,仅对于大气效果,我想以半分辨率进行应该足够了,因为大气效果的频率相当低。

If speed is not the main point, you can use ray-tracing. You can model the earth and it's atmosphere as an opaque sphere, and a few non-opaque large spheres for the atmosphere. It gives you a model that handle clouds, shadows, scattering, light filtering for a reasonable amount of work and not too much tweaks. Ray-tracing a dozen spheres with same center is very cheap. Each 'atmosphere' layer will deviate light rays, with decreasing refraction index for each layer, and they will absorb some light, more for the lower layers. Spending some time on paper, you can simplify the math a bit and make really cheap :)

Also, just for the atmospheric effect, I guess doing it in half-resolution should be enough, as atmospheric effect are rather low-frequency.

白芷 2024-11-11 00:05:38

我这样做:

  1. 第一个渲染通道

    • 表面模型为椭球体
    • 加上颜色纹理
    • 加上凹凸贴图
    • 加上与云纹理的 Alpha 混合
  2. 第二个渲染通道

[注意]

  • 您还可以添加大气折射以更精确

I do it like this:

  1. first render pass

    • surface model is ellipsoid
    • plus color texture
    • plus bump mapping
    • plus alpha blending with cloud texture
  2. second render pass

[Notes]

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