Course»Course 6»Fall 2011»6.837»Homepage

6.837  Computer Graphics

Fall 2011

Instructors: Fredo Durand, Wojciech Matusik

TAs: Jennifer P Chan, Alec Rivers

Lecture:  TR2.30-4  (32-141)        

OCW archive available

Announcements

Quiz 2 Grades are up!

The quiz 2 grades are now posted under Gradebook. Thanks everyone for a great semester and we hope you enjoyed 6.837!

Announced on 20 December 2011  6:21  p.m. by Jennifer P Chan

Everything has been graded

All the labs have been graded and entered under both 'Homework' and 'Gradebook'. Please go and check everything- if there are inconsistencies or problems, please email us.

Also, please fill out the subject evaluations if you haven't yet! http://web.mit.edu/subjectevaluation/

Announced on 14 December 2011  2:58  p.m. by Jennifer P Chan

Class evaluation

Looks like only 41% of you have entered their class evaluation so far.
It'd be great if you could go to http://web.mit.edu/subjectevaluation/ and enter it.
We always read each individual evaluation, the feedback is very useful and we try to take it into account for following offerings.
Thanks

Announced on 12 December 2011  9:10  p.m. by Fredo Durand

Small Error in pset 4 solution code

Sorry for the late notice, but if you used the provided solution code for lab 4 there's a small error in Triangle.h intersect method.
The line:
if( (beta>=0.0)&&(gamma>=0.0)&&(beta+gamma<=1)){
if( (t < tmin) || (t>hit.getT())){ return true;}
Should instead be:
if( (beta>=0.0)&&(gamma>=0.0)&&(beta+gamma<=1)){
if( (t < tmin) || (t>hit.getT())){ return false;}

Announced on 08 December 2011  10:45  p.m. by Jennifer P Chan

Pset Deliverable

Please make sure that you include ALL OF YOUR RENDERED IMAGE FILES in the zip file that you turn in. Also, as a warning, it is normal for the vase rendering to take quite awhile.

Announced on 08 December 2011  2:57  p.m. by Jennifer P Chan

View archived announcements