C/C++
duvanek.lst
Associated article: Improving Line Segment Clipping
Tags: C/C++
_IMPROVING LINE SEGMENT CLIPPING_ by Victor J. Duvanenko, W.E. Robbins, and Ronald S. Gyurcsik [LISTING ONE] /* Created by Victor J. Duvanenko. Straight forward implementation of the Cohen-Sutherland line clipping algorithm. */ #define BOOLEAN int #define TRUE 1 #define FALSE 0 #define OK 0 #...


