Student: low 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): 3 ---------------------------------------------- total (100): 98 Cohen-Sutherland: program runs, buggy (55): 50 inside case correct (10): 10 outside case correct (10): 10 one clip correct (10): 10 two clips correct (10): 10 extra credit (5): 1 ---------------------------------------------- total (100): 91 Comments: ---------------------------------------------- Bresenham: Great! Good job in implementing it with only one loop. Cohen-Sutherland: Good, but why did you not use the constants LEFT, RIGHT, TOP, and BOTTOM that we defined for you? You could have saved yourslef a lot of work by doing (outcode1&RIGHT) instead of (outcode1>>1)%2==1) *************************************************