Instructor: Geoff Hagopian,
office: Math 12
email: ghagopian@collegeofthedesert.edu
phone: 760-776-7223

Meetings: TR: 5:15-7:45

 

[Syllabus]
[Calendar]
[Compilers]
[Exams]
[References]
[Grades]

babbage difference engine

References and Resources

This web page is a repository for links to web sites to help you learn how to program in C++.

A bad pdf of the Schaum's book. Buy the hardcopy too.

You can get the source code here.

Graphics math: http://www1.ams.org/samplings/feature-column/fcarc-harmonic

Matt Mahoney at the Department of Computer Science at the Florida Institute of Technology teaches courses called Introduction to Software Development with C++ and Programming in a Second Language (C++) which contain some overlap with this course. You may be interested in his guides, such as: Introduction to C++ or How to Program in C++. There contains some suggested compilers, any of which you can examine for yourself, but I suggest you try the compiler and integrated development environment whose links are given above.

C++ Programming Tutorial

Dream in Code.

Whole Tomato.

CGI openGL overview

http://www.onecore.net/dev-c-opengl.htm

http://cs.stmarys.ca/~porter/csc/ref/c_cpp_strings.html

 

The Deitel text book examples are available for download at http://www.deitel.com/books/downloads.html#cppHTP4

Information About How to Incorporate Graphics

 

Tutorials and Guides

UML tools and documents

http://argouml.tigris.org/ : free and full featured, but quite a bit of learning curve!
http://www.smartdraw.com/tutorials/software-uml/uml.htm#what : almost $200 for this one, but there's a fee 30-day demo.
http://faculty.frostburg.edu/cosc/htracy/UML/Modularization_SPvsOOP.html

DEVCPP is a free C++ compiler and integrated development environment (IDE) available for download at http://www.bloodshed.net/devcpp.html. This IDE/compiler is fairly simple to install and use, which is why I recommend it. If you'd like to look at a more robust list of options

Dev-C++ OpenGL

These are the magic linker options required to compile OpenGL code with Dev-C++ IDE.

Choose “Project” then “Project Options” and click on the “Parameters” tab. In the linker box type in this order:

-lglut32  -lglu32  -lopengl32  -lglaux  -lgdi32  -lwinmm

http://www.dratek.com/Tutorials/DevCPP/DevCPP_devcppGlut.htm