Hi! I was wondering if someone could explain to me how I could draw and manipulate graphics using C++. What are some of my options and how do I set them up? I'm currently using Visual Studio 2010.
On a side note, what would I have to know to create my own library to draw graphics?
Essentially, you ask the operating system to do it for you. This of course means that every operating system has a different set of APIs for you to call, and a different way of doing things.
An easier way to get started is to pick out of of the widget toolkits. They handle all the operating system specific stuff for you, leaving you to get on with actually thinking about what to display on screen.