c++ Linux 下的二维绘图工具
我正在寻找一个简单的用于 Linux 的 c++ 2d 绘图工具(更诚实地说是“跨平台”)。
“koolplot”很好,但我认为它仅适用于 Windows,因为它的代码包含graphics.h 和 windows.h。
有人建议使用 Qt 的 QPainter,但我什至无法使用它来绘制单个点。 :'(
那么,是否有其他绘图工具的帮助或 Qt 的 QPainter 的不错的教程?
I am looking for a simple c++ 2d plotting tool for Linux (to be more honest "Cross-platform").
"koolplot" is nice but I think it's for windows only since its code includes graphics.h and windows.h.
Someone suggested Qt's QPainter, but I cannot even use it to draw a single point. :'(
So, is there any help on other plotting tool or a decent tutorial on Qt's QPainter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看Qwt。它对于我的所有 2D 应用程序都很有效,而且它是跨平台的。
Check out Qwt. It's worked well for all of my 2D applications, plus it's cross-platform.
MathGL 是跨平台 GPL 绘图库,它有用于 Qt 的 QMathGL 小部件。
MathGL is cross-platform GPL plotting library, and it have QMathGL widget for Qt.