如何在 C++ 中使用 GLUT / OpenGL 绘制文本?
如何使用 GLUT / OpenGL 绘图函数在屏幕上绘制文本字符串?
How do I draw a text string onto the screen using GLUT / OpenGL drawing functions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种方法可以使用 GLUT 绘制字符串
glutStrokeString 将绘制 3D 文本
< /a>
(来源:uwa.edu.au)
和 glutBitmapString 将绘制面向的文本 用户
(来源:sourceforge.net)
There are two ways to draw strings with GLUT
glutStrokeString will draw text in 3D
(source: uwa.edu.au)
and glutBitmapString will draw text facing the user
(source: sourceforge.net)
你可以这样称呼它;
And you can call it like;