C++:Programming Tutorial
Jump to navigation
Jump to search
An introduction to computer programming using C++. Comprising
- Tutorials which present problems and their solutions.
- How to... guides to completing common tasks.
- GLUT Tutorial Using OpenGL with glut.
- Practice with 3D Geometry Points, vectors, planes.
An Example: drawing the French tricolour
You can create images using C++ and the Image Magic Library. The first tutorial Flags looks at drawing flags of the world, from simple flags such as Libya to more complicated flags such as the Stars and Stripes of the USA.
Notice that the blue rectangle is at (0,0), it is 50 wide and 100 deep so the commands to draw the blue rectangle are:
g.fillColor("blue"); g.draw(DrawableRectangle(0,0,50,100));
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Consult the User's Guide for information on changing material in progzoo.
You can mess about in the Playpen.