在 GLM 中旋转模型

发布于 2024-10-30 00:29:58 字数 244 浏览 0 评论 0原文

嘿,我一直在使用 GLM 并且我一直在注意到我无法找到旋转模型的函数。

这个问题没有太多,但我想知道是否有一种方法可以旋转 GLM 模型,或者在我的 opengl 程序中旋转和单个模型。

如果是这样,你能给一些指点吗?

hey ive been working with GLM and i have been noticing that im not able to find a function to rotate the model.

There isnt much to this question, but im wondering if theres a way to rotate a GLM model, or rotate and single model in my opengl program.

if so then can you give some pointers?

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

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

发布评论

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

评论(1

撩发小公举 2024-11-06 00:29:59

您无需显式旋转模型,而是将旋转应用于模型视图矩阵。了解 OpenGL 矩阵堆栈的工作原理以及如何使用 glMatrixMode 和 glRotate 这里

在 OpenGL 的更高版本中也是如此,只不过在这些版本中,您自己实现矩阵内容并在着色器中进行转换,而不是使用内置功能。

You don't explicitly rotate models, you apply a rotation to the modelview matrix. Read up on how the OpenGL matrix stack works, and on how to use glMatrixMode and glRotate here.

It is the same in later versions of OpenGL, except in those, you implement the matrix stuff yourself and do the transform in a shader rather than using built-in functionality.

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