Syllabus for CSC 471: Introduction to Computer Graphics

Overview

General:

Welcome to computer graphics. This course will teach you the fundamentals for writing your own interactive computer graphics applications. This course requires substantial math and programming skills. Experience with C or C++ will be essential and experience with linear algebra will be helpful.

Development Environment:

We will be using

All your programs must compile in the CSL (but you may develop under other operating systems). I expect you to be curious about creating interactive visual computing artifacts with algorithms and math, along with being willing to experiment and learn on your own to create interesting computer graphics programs.

Course Objectives, by the end of the quarter students will:

Final grade breakdown:

Your latest grade information will always be available on PolyLearn, which should have the above weighting implemented.

Course Details

Labs:

Each lab exercise is typically due within three lab sessions, but the due date for each assignment is posted on the schedule. For example, typically if a lab is assigned on Monday, it must be completed by the end of Friday’s lab. Labs must be checked off by me or the TA during the lab unless you have my prior permission.

Labs can be turned in one course day late for 70% credit. So if a lab is due on Friday, it can be turned in on Monday for a maximum of 70%.

Labs can also be turned in two course days late for a maximum of 30% credit. After that, late labs will not be accepted.

Assignments:

There will be 5 substantial individual programming assignments. If your program is late you will lose 20% within first 24 hours after deadline, 40% within 48 hours, 100% after 48 hours. However, you get 2 free days for the entire quarter which can be applied to the four programming assignments only. You do not need to explain why you are using the days - these two late days will be automatically applied to any late assignments. After your two late days have been used up, the late penalties apply.

Late days are to be used for any and all reasons you might need to turn in an assignment late, including job interviews and travel.

Assignments will be turned in using GitHub Classroom.

Midterms:

There will be 2 written midterm exams. You may bring a double-sided sheet of hand-written notes to both midterms.

In an attempt to make the exam grading process more transparent and fair, and to simply reduce the grading work, I will be using gradescope to grade your midterm exams. Once exams are graded you can review the results, including the problem rubric, by logging in to gradescope.

If for whatever reason you don’t want to sign up in order to view your exam, just let me know via email and I’ll generate a PDF copy with your results.

Project:

You will get roughly 3 weeks at the end of the quarter to work on the final project.

Please consider Fundamentals of Computer Graphics by P. Shirley or Foundations of 3D Computer Graphics by S. Gortler. For a reference for modern graphics programming: OpenGL ES 3.0 Programming Guide by D. Ginsburg, et. al.

There are also numerous helpful tutorial sites for example:

Participation:

I expect you to participate in class and engage with the class material (studies suggest that taking longhand notes is one of the better ways to guarantee your engagement with the material in class) [1]. I also expect you to form a community of scholars for the duration of the quarter (and hopefully longer). My teaching style is very interactive – if you want to know more about why see [2]. Laptops have been shown to be distracting in lecture [3] and are not allowed unless specified (or a specific exception is negotiated) - same for cell phones. There also might be random pop quizzes during the class as a part of participation.

Honesty:

Although I encourage you to have lively discussions with one another, all work you hand in must be your own work. If your program or parts of your program are plagiarized from another student or unapproved sources including tutorials, you will fail the course and a letter will be put in your file with Cal Poly Judicial Affairs. Note some old tutorials do not use modern graphics — if you use them, this can result in problems. You can talk to one another about your solutions and you may look at another student’s code that has a bug (I encourage you to help each other with de-bugging), but you cannot look at someone else’s working code.

Note that I expect your OpenGL code to conform to at least OpenGL 3.0 standards (sometimes referred to as “modern graphics”) - some specifics include no use of immediate mode for rendering and no OpenGL matrix stack calls (instead we will be using glm for a matrix library) and all shading will be computed using GLSL shaders. Your code must compile and run on the machines in the CSL.

References