Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wglUseFontBitmaps() 创建字体的显示列表,然后使用 glListBase、glCallLists 在 OpenGL 中显示一些文本。 但是 glRotate() 和 glTranslate() 函数不会影响文本的位置。如何旋转文本或更改其位置?
您不能转换 OpenGL 位图。时期。受转换管道影响,您唯一可以四处移动的是使用glRasterPos.
glRasterPos
glRasterPos有效地发送由模型视图和投影转换的“顶点”,但是影响视口位置只是以下位图绘图的开始位置。