如何在图形模式下移动到某个位置
我们使用什么代码在图形模式下移动屏幕上的某个点(graphics.h)?与正常情况一样,我们使用 goto(x,y)。
What code do we use to move at a point on the screen in graphics mode(graphics.h)?As in normal we use goto(x,y).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于您在这件事上没有选择,这里有一些使用
graphics.h
绘制内容的教程:第 1 部分
第 2 部分
第 3 部分
Since you don't have a choice in the matter, here are some tutorials on drawing stuff with
graphics.h
:Part 1
Part 2
Part 3
C 作为一种语言,没有图形模式。
C, as a language, has no graphics mode.
不要使用
graphics.h
。它是来自 Borland C++ 的一个非常古老的 DOS 库(注意它也不是 C,而是 C++)。相反,选择一些东西,比如 OpenGL 或一些更高级别的库,比如 SDL。Don't use
graphics.h
. It is a very old DOS library from Borland C++ (note that its not C either but C++). Instead pick up some thing like OpenGL or some higher-level library such as SDL.