Visual Studio 2010 中的graphics.h 问题

发布于 2024-10-06 21:23:51 字数 136 浏览 5 评论 0原文

我正在编写一个简单的程序,实际上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风筝在阴天搁浅。 2024-10-13 21:23:51

您可能会#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 like LineDDA might be what you're after.

离不开的别离 2024-10-13 21:23:51

实际上,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. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文