How to create a standard map chart?

Asked

Viewed 68 times

1

I need to create a graphic standard map.

Is it possible to plot graphics using the C language? I know the basic data structure, algorithms and the c language, but I can’t create a graphical interface, I just use the console window (on Ubuntu) or the prompt (on Windows). What is needed to create a program whose graphical interface is not just on the console?

  • Do you know you can vote for everything on the site as well? See the [tour]

1 answer

1


Yes, it is possible to do this in C. It is possible to do it in any programming language that accepts calling external code in some way. Normally you will use some library that does this. It is possible to use a library only for one of these platforms mentioned in the question or one that works at all. It is possible to use a lower level or one with more abstractions.

Has a question that cites some libraries not specific to plotting, but which can be used for this as well. Some have specific components for plotting.

Some people prefer something more specific, like the SDL. Or at a lower level Directx only for Windows or Opengl (cross-Platform).

Maybe I like something even more specific like Gnuplot.

But only make a decision after knowing all enough. All have advantages and disadvantages and better meets every need.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.