I am doing a scientific project in C++ and I need to draw simple animated 3-d images of moving atomic groups. What is a good and convenient graphics library to do that? Some general remarks are also appreciated. I work in Linux.

Thank you in advance, Roman

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

OpenGL of course,

one library you could use is glut for that.

have a look on http://nehe.gamedev.net/

link|improve this answer
I have worked a little in OpenGL before, and it seems to me that's an overkill. Is it object-oriented? It'd be really good, if it was. – Roman Feb 18 '11 at 14:59
For very small demo's OOP shouldn't be needed. if if was a lot more complex some libraries will abstract that for you. – Joseph Le Brech Feb 18 '11 at 15:04
Which libraries would you recommend? – Roman Feb 18 '11 at 15:15
it's too low level, so anything non-trivial would take enormous efforts. – Gene Bushuyev Feb 18 '11 at 15:25
feedback

If you want to show 3D in linux, you should use OpenGL. But since it is a C library, you can use a wrapper, like for example glt or sfml

link|improve this answer
feedback

The easiest library to use is Vtk. A more difficult and slower, but potentially better rasterization can be achieved using POVRAY.

link|improve this answer
feedback

I suggest looking at game oriented graphics engines. They provide OO wrappers around openGL and have lots of utility functions for loading 3d model formats etc.

If you don't want to get bogged down in writing the graphics, a game oriented renderer is likely the fastest way for you to get stuff on screen.

Ogre may be a good choice - it has a fairly large and helpful community.

Irrlicht is another possibility.

link|improve this answer
feedback

There are several possibilities, some perhaps more suitable than others, obviously!

I think any one of the options mentioned above would serve to do so.

I personally recommend OSG.

http://www.openscenegraph.org/projects/osg

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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