更改openGL坐标系
现在,我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加将每个坐标减半的转换:
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.如果作为 2D(例如正交)工作,请将其更改为:
If working as 2D (say ortho), change it to the: