Visual Studio 2010 中的graphics.h 问题
我正在编写一个简单的程序,实际上使用 Visual Studio 2010 在 C++ 中实现扫描线算法。但我收到一条错误消息,指出找不到 Graphics.h 文件。谁能告诉我如何解决这个问题?或任何其他方式(不使用graphics.h)来实现扫描线算法。
i am writing a simple program actually implementing scan line algorithm in C++ using Visual Studio 2010. but i am getting an error saying graphics.h file can not be found. can anybody tell me how to solve that problem? or any other way(without using graphics.h) to implement scan line algorithm.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会
#include
。目前尚不完全清楚“扫描线算法”的含义,但乍一看它听起来有点像LineDDA
可能就是您想要的。You'd probably
#include <windows.h>
. It's not entirely clear what you mean by "scan line algorithm", but at first blush it sounds a bit likeLineDDA
might be what you're after.实际上,
graphics.h
是一个已弃用的图形头文件。它用于旧版编译器,如 Turbo-C++。据我所知,
graphics.h
不支持扫描线算法,最好使用一些更好的图形库,例如OpenGL。祝你好运。 :)
Actually,
graphics.h
is a deprecated header file for graphics. It is used for old age compilers like Turbo-C++.In my knowledge,
graphics.h
does not support scan line algorithm, better use some better graphics libraries like OpenGL.Good luck. :)