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.
feedback
|
|
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? | ||||
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. | |||
|
feedback
|
|
Qt has some pretty advance 2D graphics facilities. You'll need to do the actual math on your own though. | |||
feedback
|