I need a well-designed library to draw 2d/3d plots with C++ under Linux. Both smooth design and smooth plotting are important for my needs. Any suggestions?

Thank you in advance.

link|improve this question

Hmm... did you try google.com :) Anyway, there are some options. Are you looking for a complete GUI framework such as QT or wxWidgets? These frameworks have general-purpose drawing facilities. – Ole Thomsen Buus Feb 14 '11 at 20:13
Do you want the graphs as "output only", or interactive? – Jerry Coffin Feb 14 '11 at 20:21
@Jerry Coffin: Non-interactive. But if there is a chance of making them interactive, it would be nice too. – Roman Feb 14 '11 at 20:23
1  
For non-interactive use, I'd agree with Nil's suggestion of gnuplot. – Jerry Coffin Feb 14 '11 at 20:26
R (r-project.org) and it's various addons are a great plotting environment as well, although you can't call it directly from your code. With a little work you can also call C/C++ from R – gr0v3r Feb 14 '11 at 22:57
feedback

3 Answers

up vote 2 down vote accepted

As Nils mentioned, the easiest method is perhaps to use gnuplot to generate graphs. This may limit your ability to customize the appearance of the output, however.

You can also generate files suitable for plotting through Octave, which may give you more options with regards to graph output appearance.

Another way that I have programmatically created graphs is to generate images in SVG format. You can easily tweak the output images by hand, which makes debugging a bit easier. For working with SVG in C++, there are a number of libraries available. See agg, libboard, cairo, etc.

A few other random libraries that may be useful:

See also: Graph drawing C++ library?

link|improve this answer
There's a well written and extremely easy to use gnuplot-c++ interface here: stahlke.org/dan/gnuplot-iostream . – manneorama Feb 15 '11 at 7:30
feedback

Well you could write a program which just writes code for gnuplot. I did that for a simple visualization. That's probably the simplest way to get a plot.

link|improve this answer
feedback

Qt has some pretty advance 2D graphics facilities. You'll need to do the actual math on your own though.

link|improve this answer
I'm seeing this kind of comments so often from Qt "advocates" - why? The issue is, you're being completely and utterly irrelevant to the person's actual need. He's talking graphs (= curves, maybe nodes connected). You're saying Qt can draw 2D. So can anything. The exact same comment could be said for Windows, Mac, iOS, you name it. Therefore my -1. – akauppi Mar 16 at 13:49
feedback

Your Answer

 
or
required, but never shown

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