Student:mburu Assignment: 2 Grader: Damian ************************************************ Bresenham: program runs, buggy (55): 55 correct implementation of Bresenham (20): 20 no floats and divides (20): 20 extra credit (5): 5 ---------------------------------------------- total (100): 100 Cohen-Sutherland: program runs, buggy (55): 55 inside case correct (10): 10 outside case correct (10): 10 one clip correct (10): 10 two clips correct (10): 10 extra credit (5): 5 ---------------------------------------------- total (100): 100 Comments: ---------------------------------------------- The Bresenham Algorithm: Good job! A nice short implementation which faithfully implements the Bresenham alorithm. And you got the "no floats" trick! The only little comment is more of a stylistic one: you declare a LOT of variables, some of which you declare and then use only once. You could probably be a little more efficient there. But that's no big deal. CohenSutherland Algorithm: Looks great. Correct and a nice implementation. Good job! *************************************************