渲染后的 OpenGL 点位置(3d -> 2d)
我有一个 OpenGL 场景,上面有一些图形。你能告诉我在“渲染”之后我需要做什么来计算图形顶点位置吗?我知道我可能需要手动乘以一些矩阵,但我不知道其中哪些矩阵以及如何乘法。
预先感谢您的任何帮助!
I've got an OpenGL scene with some figures on it. Can you tell me what I need to do to calculate figures apexes positions after "rendering"? I know I probably need to manual multiply some matrices, but I don't know which of them and how.
Thanks in advance for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下
gluProject()
函数。编辑:也可在 OpenGL 常见问题解答中找到:
9.100 如何找到给定对象空间坐标的屏幕坐标?
(不过,答案相同。)
Take a look at the
gluProject()
function.Edit: Also found in the OpenGL FAQ:
9.100 How can I find the screen coordinates for a given object-space coordinate?
(Same answer, though.)
您想知道屏幕上的最大像素范围吗?
如果是这样,最简单的方法是为所有顶点调用 gluProject 并存储最大和最小 x 和 y 位置。
可能看起来像这样:
Do you want to know the maximum extents on your screen in pixles?
If so, the simplest way to go is to call gluProject for all your vertices and store the maximum and minimum x and y positions.
Could look like this: