Reputation: 10153
What is the best way to chart a 3D scatter graph in C++?
Or maybe it's easier to use an external programs. Can you recommend my anything?
Upvotes: 1
Views: 1247
Reputation: 514
Did you heard about ChartDirector. I used to use it but don't know if they have a 3D scatter chart. Try http://www.advsofteng.com/1
Upvotes: 3
Reputation: 2218
What you'll want is some form of GUI library - you could use, say, ncurses, but graphs in a terminal are rather difficult. Any GUI library will do it.
FLTK is the easiest to pick up and can definitely accommodate your problem, but GTK should also do it, along with wxWidgets et al.
Failing that, OpenGL is probably a hacky way to get it done!
Hope this helps.
Upvotes: 2