什么是C ++中的简单图形库?

时间:2013-12-03 13:11:24

标签: c++ visual-c++ graphics

在C ++中,什么是易于使用的图形库?它不必先进,只需绘制2D形状就足够了。

如果可能的话,与Java中的paint-paintcomponent-repaint相似的东西会很棒。

我唯一想要使用它的是在白色屏幕上绘制小圆圈,每次刷新,如:

calculate positions
loop:
    move
    recalculate
    refresh and draw circles at the new positions

就是这样。

4 个答案:

答案 0 :(得分:9)

答案 1 :(得分:5)

特别是使用Visual C ++,我想你会对Cinder感兴趣。链接为http://libcinder.org/

以下是有关将Cinder与Visual C ++ 2013一起使用的视频演示 http://www.youtube.com/watch?v=hwHYJM2GV1U

答案 2 :(得分:4)

Qt是一个功能强大,易于使用且跨平台的C ++库。

还有very good book for beginners

答案 3 :(得分:2)

如果你不害怕钻研一些相对较新的东西,你可以尝试Cinder,这是Herb Sutter during Going Native 2013所倡导的,可以接受和强大的东西。