如何在 C 语言中移动 FTGL 中的文本?
我可能错过了一些东西,但我在头文件中看到了各种在 C++ 中移动文本的函数,但在 C API 上却没有。它是如何完成的?
编辑:例如 Pixmap 字体。
I may have missed something but I see here on header files all kinds of functions to move text around in C++ but not on the C API. How is it done?
EDIT: Pixmap fonts for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
glTranslatef()
或glRasterPos2f()
。另外,你在看什么文档? 我没有看到任何定位功能。
Try
glTranslatef()
orglRasterPos2f()
.Also, what documentation are you looking at? I'm not seeing any positioning functionality.