Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple way to draw shapes in c++?

Are there any drawing libraries out there that are really simple? I literally mean functions such as "draw_circle(screen,x,y,r,colour)" or something similar.

I've taken a look at SDL but it doesn't support what I want out of the box - I would like something that is really easy to use straight away, if possible.

like image 437
Jacob Avatar asked Mar 02 '11 19:03

Jacob


1 Answers

Probably Allegro5. It's easy and great for beginners. You can simply draw shapes and sprites.

Allegro5 Website

like image 127
Robik Avatar answered Oct 14 '22 05:10

Robik