更改openGL坐标系

发布于 2024-09-26 21:11:50 字数 65 浏览 3 评论 0原文

现在,我的 openGL 窗口在 X 轴和 Y 轴上都从 -1 缩放到 1。我该如何改变这个,比如说 -2 和 2?

Right now, my openGL window scales from -1 to 1 on both the X and Y axis. How would I change this, to say, -2 and 2?

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

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

发布评论

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

评论(2

不乱于心 2024-10-03 21:11:50

添加将每个坐标减半的转换:glScalef(0.5,0.5,0.5);。但请注意,如果不了解 OpenGL 矩阵、可以添加的各种转换以及使用堆栈,您就不会走得太远。例如,请参阅有关转换的 OpenGL 常见问题解答,更详细的信息, 规范

Add transformation for halving every coordinate: glScalef(0.5,0.5,0.5);. Note however, you won't get far without understanding OpenGL matrices, various transformations you can add and working with the stacks. See, for example, OpenGL FAQs regarding transformations and in more detail, the specification.

榆西 2024-10-03 21:11:50

如果作为 2D(例如正交)工作,请将其更改为:

 gluOrtho2D(-2,2,-2,2)

If working as 2D (say ortho), change it to the:

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