I am creating simulation that models how an gas behaves in a container. I have collision checking set up, however I would like to draw the data on screen to make sure it is working correctly

All I need is a simple way to draw simple shapes such as circles to the screen using c++. these shapes do not have to look great, just function. I may want to move my simulation from 2D to 3D in the future as well - so a library that has 3D capabilities would be good. Remember I will be looping through and drawing several hundred gas molecules, so fast would also be good.

I am fairly new to c++ as a language so go easy. My IDE/compiler is VS 2010 Professional.

I have already used google - but I can not find any good installation guide for installing the library. So an installation guide would be a big plus

link|improve this question
For simplicity in 2D you might try GDI+. – Jimmy Feb 18 '11 at 19:26
New to C++ and already starting out with graphics? That sounds like asking for headaches... – delnan Feb 18 '11 at 19:30
Why was this downvoted? It's a reasonable question. +1. – Justin Morgan Feb 18 '11 at 20:06
feedback

3 Answers

Look at SDL with SDL_gfx. You can then switch to SDL/OpenGL to do 3D.

link|improve this answer
feedback

I would recommend OpenGL, it's easy to use for your task. Also it's cross-platform and you can easily switch to 3D.

link|improve this answer
feedback

OpenGL is one possibility, though there are also other libraries built on top of OpenGL that might be useful as well.

Edit: OpenGL itself is installed as part of the OS. Headers and libraries for OpenGL 1.1 are included with VS 2010, so if you don't need newer features, you're already set. If you want to use newer functions, you probably want to use GLEW or GLEE.

link|improve this answer
How would I install openGL for use with VS2010? – Jacob Millward Feb 19 '11 at 9:18
@Jacob Millward: See edited answer. – Jerry Coffin Feb 19 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.