Student: greenie Assignment: 2 Grader: Charlie ************************************************ Bresenham: program runs, buggy (55): 55 correct implementation of Bresenham (20): 20 no floats and divides (20): 20 extra credit (5): 1 ---------------------------------------------- total (100): 96 Cohen-Sutherland: program runs, buggy (55): 55 inside case correct (10): 10 outside case correct (10): 5 one clip correct (10): 10 two clips correct (10): 10 extra credit (5): 0 ---------------------------------------------- total (100): 90 Comments: ---------------------------------------------- Bresenham: Good job! Good attempt at all 8 octants. Cohen-Sutherland: You missed the case where you draw from one side to another side without actually clipping. For example, draw from the left side to the top side, but don't clip the corner. Your code returns the clip code "clipped," but it should be "external." *************************************************