应用没有坐标的纹理

发布于 2024-11-29 12:01:20 字数 33 浏览 1 评论 0原文

有没有办法在不指定纹理坐标的情况下将纹理应用到对象?

Is there any way to apply the texture to an object without specifying texture coordinates?

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

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

发布评论

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

评论(1

木格 2024-12-06 12:01:20

在固定功能OpenGL中,可以通过激活纹理坐标生成模式来生成纹理坐标。有几种固定算法(球面坐标、反射坐标),还有一种算法将顶点分量乘以 4x4 矩阵来生成纹理坐标。

在着色器中,您可以使用任何可以通过算法生成的东西。

然而,如果不告诉我们您想要如何将纹理映射到表面,就无法知道您想要的是否可行。没有glTextureMyObject做“某事”;要么必须使用显式纹理坐标,要么必须由某些算法生成它们。

In fixed-function OpenGL, you can generate texture coordinates by activating texture coordinate generation modes. There are a couple of fixed algorithms (spherical coordinates, reflection coordinates), and there is one that multiplies a vertex component by a 4x4 matrix to generate a texture coordinate.

In shaders, you can use anything you can algorithmically generate.

However, without telling us how you want a texture mapped to the surface, there's no way to know if what you want is possible. There is no glTextureMyObject that does "something"; either explicit texture coordinates must be used or some algorithm must generate them.

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