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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.